欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue+router路由跳转不起作用的一项原因

程序员文章站 2022-06-26 09:18:49
vue.use(router) export default new router({ mode:'history', routes: [ { path:...

vue.use(router)

export default new router({

mode:'history',

routes: [

{ path: '/', component: login },

{ path: '/login', component: login },

{ path: '/register',component: register},

{path: '/*', component: notfound},

]

})

记得要写上 mode:'history',