生命周期
- beforeCreate 创建之前
- created 创建完成
- beforeMount 挂载之前
- mounted 挂载完成
- beforeUpdate 改变之前
- updated 改变完成
- beforeDestroy 销毁之前
- destroyed 销毁完成
jsonp
this.$http.jsonp(url,{params:{a:1,b:2}},{emulateJSON:true})
.then(function(res){},function(){})
this.$http.jsonp(url,{params:{a:1,b:2}},{emulateJSON:true})
.then(function(res){},function(){})