18 lines
414 B
Vue
18 lines
414 B
Vue
|
<template>
|
||
|
<div class="custom-page" :style="`background-image: url(${getAssetsFile('images/landBase/land2.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);
|
||
|
}
|
||
|
</style>
|