export default new Router({
mode: 'history',
routes: [{
path: '/',
name: 'World',
component: World
}, {
path: '/world',
name: 'World',
component: World
}]
})
http://localhost:8080/ 可以访问
http://localhost:8080/world 不可以访问 是为什么啊
把history模式去掉