赞
踩
问题原因,打包之后访问路径错误,index.html打开是空白,
F12报错找不到引用文件,一看引用在了根目录(文件所在盘,如:C盘、E盘)
将路由从history
换成hash
const router = new VueRouter({
mode: "hash",
base: process.env.BASE_URL,
routes
});
// vue.config.js
module.exports = {
// 解决不引用就会报错
lintOnSave: false,
publicPath: "./",
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。