uniapp 获取manifest.json中的版本号信息

 uniapp 获取manifest.json中的版本号信息_第1张图片

onLoad() {
    // 获取本地应用资源版本号
    plus.runtime.getProperty(plus.runtime.appid, (wgtinfo) => {
        this.innerVer = wgtinfo.version;
        this.versionCode = wgtinfo.versionCode ;
    // console.log(innerVer)
    })
},

 

你可能感兴趣的:(uni-app)