赞
踩
解决方法
步骤一、修改vue.config.js里的publicPath
module.exports = {
publicPath: '/xwh/dist/'
}
步骤二、修改路由router的index配置
export default new Router({
mode: 'history', // (这里有一个坑下文会讲到)
base: '/xwh/dist/' // 改这里,部署的子路径
})
(前提是非根目录)
解决方法: 把路由模式由history改为hash
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。