export default new Router({
mode:'history', //加上这一句
routes: [
...homePage.routes,
{
path: '*',
name: 'nofound',
component: nofound
}
]
})
还需要后端配置一下环境
export default new Router({
mode:'history', //加上这一句
routes: [
...homePage.routes,
{
path: '*',
name: 'nofound',
component: nofound
}
]
})
还需要后端配置一下环境