如果我从main.js导入我的模块:
import Vue from 'vue'
import store from './vuex/store'
import VueResource from 'vue-resource'
Vue.use(VueResource);
import Component from './components/component.vue';
在这个例子中,我是否需要在component.js中重新导入VueResource?
如果不是我不明白为什么我想在我的component.js中使用vue ressource时出错:
Cannot read property '$http' of undefined
component.js:
this.$http.get('http://ajaxurl.test').then((response) => {
// success callback
}, (response) => {
//failure
});
答案 0 :(得分:0)
import
不是继承的。每个模块都需要导入所需的所有资源。