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

12 lines
244 B
Vue
Raw Normal View History

<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>
</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>
<style scoped></style>