mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-18 09:46:36 +08:00
21 lines
473 B
Vue
21 lines
473 B
Vue
<template>
|
|
<div class="p-10px">
|
|
<data-card :loading="loading" />
|
|
<nav-card :loading="loading" />
|
|
<router-link :to="EnumRoutePaths['dashboard-workbench']">workbench</router-link>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue';
|
|
import { DataCard, NavCard } from './components';
|
|
import { EnumRoutePaths } from '@/enum';
|
|
|
|
const loading = ref(true);
|
|
|
|
setTimeout(() => {
|
|
loading.value = false;
|
|
}, 1500);
|
|
</script>
|
|
<style scoped></style>
|