vue项目中router.js中路由的配置,现在必须要localhost:8080/#/main这样才能访问到,localhost:8080/main这样就不可以这是什么原因导致的应该怎么修改?
export default new Router({
routes: [
{
path: '/',
name: 'HelloWorld',
component: HelloWorld
},
{
path: '/main',
name: 'main',
component: Main
},
]
})
history-mode