以uni-app新闻模板例子
在news-page.nvue页中的methods,无法访问在main.js挂载的属性,如:
Vue.prototype.http = http
在news-page.nvue的methods中,如:
methods: {
loadMore(){
this.http.get() // http 为 undefined
}
}
,其它
Vue.prototype.xxx = xx 全不能访问??
在h5运行模式中是可以的,就是在模拟器以APP方式运行出错。
0 个回复