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

HBuilder将Vue项目打包成APP

程序员文章站 2022-05-04 11:42:12
...

1.将项目目录下config文件内index.js中build的assetsPublicPath修改为 assetsPublicPath: './'
2.路由模式 带#为hash 不带为history

export default new Router({
    base: '/',
    mode: 'hash',
  routes: routeArr

3.运行-项目目录-npm run build生成dist文件夹
4.在HBuilder中创建新的App项目,复制dist文件夹下内容到新项目中,或指定dist文件夹为新项目
5.用真机运行测试
6.打包App

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