美文网首页
记一次vue-cli3项目打包后不出东西的解决

记一次vue-cli3项目打包后不出东西的解决

作者: HonneyHao | 来源:发表于2019-06-21 15:39 被阅读0次

1.vue.config.js里面:

module.exports = {
    publicPath: "./",
}

2.router.js里面注释:

export default new Router({
    // mode: "history",
    // base: process.env.BASE_URL,
    routes: [
        {
            path: "/",
            name: "index",
            component: () => import ("@/pages/Index.vue")
        },
        {
            path: "/about",
            name: "about",
            component: () => import ("@/pages/About.vue")
        }
    ]
});

相关文章

网友评论

      本文标题:记一次vue-cli3项目打包后不出东西的解决

      本文链接:https://www.haomeiwen.com/subject/yhayqctx.html