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

        var vue = new Vue({
            el:"#myspan",
            data:{
                list:[]
                },
                mounted() {
                    axios.get("data.json")
                    .then(response=>this.list=response.data)
                },
            methods:{
                myclick:function(){
                    
                }
            }
        })
原文地址:https://www.cnblogs.com/huqi96/p/14643554.html