26 lines
435 B
Vue
26 lines
435 B
Vue
|
|
<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>
|