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