21 lines
506 B
Vue
21 lines
506 B
Vue
|
<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>
|