21 lines
506 B
Vue
Raw Normal View History

2025-06-15 20:06:49 +08:00
<template>
<div class="custom-page" :style="`background-image: url(${getAssetsFile('images/landBase/land1.png')})`">
<!-- <h1>统计数据</h1>
<div class="content"></div> -->
</div>
</template>
<script setup>
import { ref, watch, onMounted, computed } from 'vue';
import { getAssetsFile } from '@/utils';
</script>
<style scoped lang="scss">
.custom-page {
height: calc(100vh - 150px);
background-size: cover;
// background-position: center;
background-repeat: no-repeat;
}
</style>