vue去掉地址栏#(带来的后果)

按以下修改后,带来的后果:打包后部分图片访问不到,首页没加载router-view内容

 

 

router 的index中配置模式设置为history

export default new Router({
mode: 'history',
routes: [
// 重定向
{
path: '/',
name: 'home',
component: Home
},

]

转载于:https://www.cnblogs.com/duanzhenzhen/p/10672614.html

你可能感兴趣的:(javascript)