2021-09-09 18:40:38 +08:00
|
|
|
<template>
|
2021-09-11 02:34:36 +08:00
|
|
|
<div>
|
|
|
|
<h2>工作台</h2>
|
2021-09-14 01:31:29 +08:00
|
|
|
<router-link :to="EnumRoutePath['dashboard-analysis']">analysis</router-link>
|
2021-09-11 02:34:36 +08:00
|
|
|
</div>
|
2021-09-09 18:40:38 +08:00
|
|
|
</template>
|
|
|
|
|
2021-09-11 02:34:36 +08:00
|
|
|
<script lang="ts" setup>
|
2021-09-14 01:31:29 +08:00
|
|
|
import { EnumRoutePath } from '@/enum';
|
2021-09-11 02:34:36 +08:00
|
|
|
</script>
|
2021-09-09 18:40:38 +08:00
|
|
|
<style scoped></style>
|