我有以下代码
<div id="vue-instance">
</div>
Run Code Online (Sandbox Code Playgroud)
JS
var vm = new Vue({
el: '#vue-instance',
data: {
},
ready:function(){
this.loadCountries();
},
methods:{
loadCountries(){
this.$http.get('https://restcountries.eu/rest/v1/all',function(data){
console.log(data);
})
}
}
});
Run Code Online (Sandbox Code Playgroud)
当我运行上面的代码时,它给了我以下错误
未捕获的类型错误:无法读取未定义的属性“get”
我有一个小提琴
帮助将不胜感激