示例代码:
main.js内:Vue.prototype.getPx = function(rpx){return parseInt(rpx*uni.getSystemInfoSync().windowWidth/750)}
nvue内,this.getPx(10)
运行结果:
TypeError: this.xxx is not a function. (In 'this.xxx()', 'this.xxx' is undefined)
示例代码:
main.js内:Vue.prototype.getPx = function(rpx){return parseInt(rpx*uni.getSystemInfoSync().windowWidth/750)}
nvue内,this.getPx(10)
运行结果:
TypeError: this.xxx is not a function. (In 'this.xxx()', 'this.xxx' is undefined)
panyh (作者)
main.js内:Vue.prototype.getPx = function(rpx){return parseInt(rpx*uni.getSystemInfoSync().windowWidth/750)}
nvue内,this.getPx(10)
2020-07-10 10:01