向Vue实例混入plusready
Posted xiaoyucoding
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了向Vue实例混入plusready相关的知识,希望对你有一定的参考价值。
(function () {
var onPlusReady = function (callback, context = this) {
if (window.plus) {
callback.call(context);
} else {
document.addEventListener(‘plusready‘, callback.bind(context));
}
};
Vue.mixin({
beforeCreate: function () {
onPlusReady(function () {
this.plusReady = true;
}, this);
},
methods: {
onPlusReady: onPlusReady
}
});
}());
以上是关于向Vue实例混入plusready的主要内容,如果未能解决你的问题,请参考以下文章