搜索

首页  >  问答  >  正文

node.js - vue项目build后,打开监听port没问题,但是刷新页面后就挂掉了

开发环境下跑起来都没问然后npm run build后,打开监听port没问题,

但是刷新页面后就挂掉了,刷新后就如下图


然后我改了下mian.js中的代码,build后刷新页面不会挂掉,但是我不知道为什么

修改前

let router = new VueRouter({
mode: 'history',
routes: [
{
path: '/',
component: goods
},
{
path: '/goods',
component: goods
},
{
path: '/ratings',
component: ratings
},
{
path: '/seller',
component: seller
}

],
linkActiveClass: 'active'

})

修改后

const routes = [{
  path: '/',
  redirect: '/goods'
}, {
  path: '/goods',
  component: goods
}, {
  path: '/ratings',
  component: ratings
}, {
  path: '/seller',
  component: seller
}];

const router = new VueRouter({
  linkActiveClass: 'active',
  routes
});

修改后的url多了一个#的原因吗?

漂亮男人漂亮男人2755 天前627

全部回复(1)我来回复

  • 漂亮男人

    漂亮男人2017-05-16 13:32:23

    vue-router文档-history后端配置

    回复
    0
  • 取消回复