| 1234567891011121314151617181920212223242526272829 |
- <template>
- <div class="youwei-trace-page" :style="{ height: `calc(100vh - ${tabBarHeight}px)` }">
- <empty
- image="https://birdseye-img.sysuimars.com/birdseye-look-mini/custom-empty-image.png"
- image-size="80"
- description="该页面正在升级,敬请期待..."
- />
- </div>
- </template>
- <script setup>
- import { computed } from "vue";
- import { useStore } from "vuex";
- import { Empty } from "vant";
- const store = useStore();
- const tabBarHeight = computed(() => store.state.home.tabBarHeight);
- </script>
- <style scoped lang="scss">
- .youwei-trace-page {
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- box-sizing: border-box;
- }
- </style>
|