欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

cordova+vue打包后空白问题

程序员文章站 2022-03-04 13:35:21
...

检查Vue项目

1.检查Config目录中index.js文件build的配置,参照一下配置

// Template for index.html
index: path.resolve(__dirname, '../dist/index.html'),

// Paths
assetsRoot: path.resolve(__dirname, '../dist'),
assetsSubDirectory: '',
assetsPublicPath: '',
  1. 更改Router路由的模式
const router = new VueRouter({
mode: 'hash',
routes: [...]
})

转载于:https://www.jianshu.com/p/b01a996b6d57