You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
441 B
18 lines
441 B
<template>
|
|
<div>
|
|
<WorkbenchHeader />
|
|
<!-- <div class="p-4">
|
|
<GrowCard :loading="loading" class="enter-y" />
|
|
</div> -->
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { nextTick, ref } from 'vue';
|
|
import WorkbenchHeader from './components/WorkbenchHeader.vue';
|
|
import GrowCard from './components/GrowCard.vue';
|
|
|
|
const loading = ref(true);
|
|
setTimeout(() => {
|
|
loading.value = false;
|
|
}, 1000);
|
|
</script>
|