在路由router.index.ts中配置自动跳转到首页 通过redirect: '/dashboard'实现首页自动跳转 在views文件夹中创建首页文件夹dashboard以及Index.vue 修改菜单layout.Menu.vue,增加首页选项pull/10/head
parent
6b88c8cf43
commit
c35f0cfdb4
@ -0,0 +1,13 @@
|
||||
<template>
|
||||
<div>
|
||||
首页面
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
Loading…
Reference in new issue