| 12345678910111213141516171819202122232425262728293031 |
- import { createRouter, createWebHashHistory } from 'vue-router'
- const routes = [{
- path: '/',
- redirect: '/login'
- },
- {
- path: '/init',
- name: 'Init',
- component: () => import('@/view/init/index.vue')
- },
- {
- path: '/login',
- name: 'Login',
- component: () => import('@/view/login/index.vue')
- },
- {
- path: '/:catchAll(.*)',
- meta: {
- closeTab: true,
- },
- component: () => import('@/view/error/index.vue')
- }
- ]
- const router = createRouter({
- history: createWebHashHistory(),
- routes,
- })
- export default router
|