を再インポート:この例ではES 6つのモジュールが
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
});
あなたは 'component.js'と' component.vue'と言っています。どちらですか?もっと多くのコンポーネントを表示できますか? 'this。$ http'は内部で実行されていますか?コンポーネントメソッド? 'console.log(this)'はあなたにコンポーネントを与えますか? – ceejayoz