以下是我的代码,
mounted() {
this.initList()
},
methods:{
initList: function(){
this.$http.post('/api/user/SelectTitle',{},{}).then((response) => {
this.service_show_list = response.body;
})
}
},
但是会报错显示Error in mounted hook: "TypeError: Cannot read property 'post' of undefined",但是如果通过按钮直接调用initList函数就是没有问题的,麻烦问一下您知道这是怎么回事儿吗~我在main.js中引用了vue-resource的
import VueResource from 'vue-resource'
Vue.config.productionTip = false
new Vue({
el: '#app',
template: '<App/>',
components: { App }
})
Vue.use(VueResource)
慕妹3242003
相关分类