Vue通过JS共享全局参数
通过JS抛出一下公用的参数module.exports = { /** * 应用名称 */ name: 'WMS', /** * 版本名称 */ versionName: '1.0.0.20210329', /** * 版本号 */ version: 101, /** * 默认头像 */ defaultAvatar: ''}在main.js中注册全局import xxx from 'xxx.js'Vue.prototype.$xxx .