mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
19 lines
347 B
Vue
19 lines
347 B
Vue
<template>
|
|
<div class="p-10px">
|
|
<data-card :loading="loading" />
|
|
<nav-card :loading="loading" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue';
|
|
import { DataCard, NavCard } from './components';
|
|
|
|
const loading = ref(true);
|
|
|
|
setTimeout(() => {
|
|
loading.value = false;
|
|
}, 1500);
|
|
</script>
|
|
<style scoped></style>
|