1.vue的链接访问问题
现象:为可以通过 ip/项目 访问,内部点击也正确,但刷新会404
解决:vue项目中的 router/index.js
export default new Router({
// mode: 'history', // 去掉url中的#
mode: 'hash',
base: '/filebox_vue',
scrollBehavior: () => ({ y: 0 }),
routes: constantRoutes
})
mode 模式需要使用 hash