Router

import {createRouter,createWebHistoryHash} from 'vue-router'
//制定路由规则
const routes = [
{path:'/',
name:'main',
component:import ('@/views/Main.vue')
},
]

//设置路由模式(creteWebHistoryHash/createWebHistory)
const router = {
history:createWebHistoryHash(),
routes

}
//暴露router
export default router

posted @ 2025-06-03 22:19  我就起个名字不至于吧  阅读(11)  评论(0)    收藏  举报