赞
踩
目录
1.在项目根目录(与app.vue同级)创建template.h5.html文件
2.在manifest.json配置刚刚创建好的template.h5.html,以下方法任选其一
2.1方法一 manifest.json > Web配置 > index.html模板路径
2.2 方法二 manifest.json > 源码视图 > 找到h5输入代码 : "template" : "template.h5.html"
config.js可以根据服务器中的具体存放位置修改打包后入口文件中的路径
在项目中不需要任何引入,可以直接使用这个变量(这个只在打包的H5才可以使用,如果开发多端,需要使用条件编译)
template.h5.html代码直接复制下方代码即可
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <script>
- var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'))
- document.write('<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + (coverSupport ? ', viewport-fit=cover' : '') + '" />')
- </script>
- <script src="./static/config.js"></script>
- <link rel="stylesheet" href="<%= BASE_URL %>static/index.<%= VUE_APP_INDEX_CSS_HASH %>.css" />
- </head>
- <body>
- <noscript>
- <strong>Please enable JavaScript to continue.</strong>
- </noscript>
- <div id="app"></div>
- <!-- built files will be auto injected -->
- </body>
- </html>
方法一
方法二
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。