31 lines
549 B
Vue
31 lines
549 B
Vue
<!--
|
|
* @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: 100vh;
|
|
box-sizing: border-box;
|
|
background: url('~/assets/images/new/大背景.png') center no-repeat;
|
|
background-size: 100% 100%;
|
|
position: relative;
|
|
}
|
|
</style>
|