var vm = new Vue({
el:'.container',
data:{
abc:'ac'
},
Mounted:function(){
this.$nextTick(function(){
this.cartView()
})
},
methods:{
cartView:function(){
this.$http.get('data/cart.json').then(function(res){
console.log(res)
})
}
}
})
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
Mounted应为mounted