23 lines
520 B
Vue
23 lines
520 B
Vue
![]() |
<template>
|
||
|
<div class="plant-gs-warp">
|
||
|
<div class="plant-gs-content" :style="{ 'background-image': 'url(' + getAssetsFile('images/plant/bg1.png') + ')' }"></div>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script setup>
|
||
|
import { isEmpty, getAssetsFile } from '@/utils';
|
||
|
</script>
|
||
|
<style lang="scss" scoped>
|
||
|
.plant-gs-warp {
|
||
|
height: 100%;
|
||
|
padding: 10px 0;
|
||
|
width: 100%;
|
||
|
box-sizing: border-box;
|
||
|
.plant-gs-content {
|
||
|
background-size: contain;
|
||
|
background-repeat: no-repeat;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
}
|
||
|
</style>
|