ruoyi-plus-soybean/src/views/dashboard/analysis/index.vue

19 lines
347 B
Vue
Raw Normal View History

<template>
2021-09-09 21:54:38 +08:00
<div class="p-10px">
<data-card :loading="loading" />
<nav-card :loading="loading" />
</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 21:54:38 +08:00
const loading = ref(true);
2021-09-09 21:54:38 +08:00
setTimeout(() => {
loading.value = false;
}, 1500);
</script>
<style scoped></style>