mounted钩子函数,页面初始化完成此函数加载

        var vue = new Vue({
            el:"#myspan",
            data:{
                list:[]
                },
                mounted() {
                    axios.get("data.json")
                    .then(response=>this.list=response.data)
                },
            methods:{
                myclick:function(){
                    
                }
            }
        })

 

posted @ 2021-04-11 13:03  动力起点  阅读(241)  评论(0)    收藏  举报