23 lines
520 B
Vue
Raw Normal View History

2025-03-24 17:32:57 +08:00
<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>