2021-09-09 18:40:38 +08:00
|
|
|
<template>
|
2021-09-17 08:31:49 +08:00
|
|
|
<div class="px-10px">
|
2021-09-09 21:54:38 +08:00
|
|
|
<data-card :loading="loading" />
|
|
|
|
<nav-card :loading="loading" />
|
2021-09-09 18:40:38 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2021-09-09 21:54:38 +08:00
|
|
|
import { ref } from 'vue';
|
|
|
|
import { DataCard, NavCard } from './components';
|
2021-09-09 18:40:38 +08:00
|
|
|
|
2021-09-09 21:54:38 +08:00
|
|
|
const loading = ref(true);
|
2021-09-09 18:40:38 +08:00
|
|
|
|
2021-09-09 21:54:38 +08:00
|
|
|
setTimeout(() => {
|
|
|
|
loading.value = false;
|
|
|
|
}, 1500);
|
2021-09-09 18:40:38 +08:00
|
|
|
</script>
|
|
|
|
<style scoped></style>
|