This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cyber-narrator-cn-ui/src/router/index.js
2023-11-09 16:17:25 +08:00

17 lines
297 B
JavaScript

import { createRouter, createWebHashHistory } from 'vue-router'
const routes = [
{ path: '/', redirect: '/login' },
{
path: '/login',
component: () => import('@/Login')
}
]
const router = createRouter({
history: createWebHashHistory(),
routes: routes
})
export default router