在vue中,如何设置页面一加载就执行一个函数?

  //页面加载时候执行
        ,created()
        {
            axios.get('searchAll/1/20').then(response => {
                console.log(response);
                this.results = response.data;//绑定数据!
            })
        }

使用,created()就行了

你可能感兴趣的:(vue,js,javascript)