Commit edec7f42 authored by 罗林杰's avatar 罗林杰

Merge remote-tracking branch 'origin/master'

parents 3daeffde ac24ef66
...@@ -20,14 +20,14 @@ Object.keys(modules).forEach((key) => { ...@@ -20,14 +20,14 @@ Object.keys(modules).forEach((key) => {
export const asyncRoutes = [PAGE_NOT_FOUND_ROUTE, ...routeModuleList]; export const asyncRoutes = [PAGE_NOT_FOUND_ROUTE, ...routeModuleList];
// 根路由 // 根路由
// export const RootRoute: AppRouteRecordRaw = { export const RootRoute: AppRouteRecordRaw = {
// path: '/', path: '/',
// name: 'Root', name: 'Root',
// redirect: PageEnum.BASE_HOME, redirect: '/homePage/index',
// meta: { meta: {
// title: 'Root', title: 'Root',
// }, },
// }; };
export const LoginRoute: AppRouteRecordRaw = { export const LoginRoute: AppRouteRecordRaw = {
path: '/login', path: '/login',
......
<template> <template>
首页 <div>通知中心</div>
</template> </template>
<script> <script lang="ts" setup>
export default {
name: "index"
}
</script>
<style scoped>
</style> </script>
<template> <template>
通知中心 <div>通知中心</div>
</template> </template>
<script lang="ts" setup>
<script>
export default {
name: "index"
}
</script> </script>
<style scoped>
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment