vue js不是函数

时间:2019-01-30 04:51:24

标签: laravel vue.js

这是我的错误代码“ this.fetchArticle不是函数”

created(){
        this.fetchArticles();
    },
    method: {
        fetchArticles(){
            fetch('api/articles')
            .then(res => res.json())
            .then(res => {
                console.log(res.data)
            })
        }
    }

谢谢

1 个答案:

答案 0 :(得分:2)

它的方法不是方法


created(){
        this.fetchArticles();
    },
    methods: {
        fetchArticles(){
            fetch('api/articles')
            .then(res => res.json())
            .then(res => {
                console.log(res.data)
            })
        }
    }