ZhangXianQiang
2024-05-31 5a7ebba43b515dbca220fca23f352af93188052e
1
2
3
4
5
6
7
8
9
10
11
12
13
import { createMemoryHistory, createRouter } from 'vue-router'
 
 
const routes = [
  { path: '/', component: () => import('@/views/home/index.vue') },
]
 
const router = createRouter({
  history: createMemoryHistory(),
  routes,
})
 
export default router;