lg_frontend/components/NewBg.vue

31 lines
548 B
Vue
Raw Normal View History

2024-06-15 17:13:55 +00:00
<!--
* @Description: 内容
* @ComponentName: ModuleContent
* @Author: wangzhigang11
* @Date: 2023-05-06 18:30
-->
<template>
<div class="bg">
<slot></slot>
</div>
</template>
<script>
export default {
name: 'NewBg'
}
</script>
<style scoped lang="less">
@import "assets/styles/mixin";
.bg {
width: 100%;
box-sizing: border-box;
height: 100%;
box-sizing: border-box;
background: url('~/assets/images/new/大背景.png') center no-repeat;
background-size: 100% 100%;
position: relative;
}
</style>