这是我的错误代码“ this.fetchArticle不是函数”
created(){
this.fetchArticles();
},
method: {
fetchArticles(){
fetch('api/articles')
.then(res => res.json())
.then(res => {
console.log(res.data)
})
}
}
谢谢
答案 0 :(得分:2)
它的方法不是方法
created(){
this.fetchArticles();
},
methods: {
fetchArticles(){
fetch('api/articles')
.then(res => res.json())
.then(res => {
console.log(res.data)
})
}
}