12.15 默写

生命周期

12.15 默写_第1张图片
  • beforeCreate 创建之前
  • created 创建完成
  • beforeMount 挂载之前
  • mounted 挂载完成
  • beforeUpdate 改变之前
  • updated 改变完成
  • beforeDestroy 销毁之前
  • destroyed 销毁完成

jsonp

 this.$http.jsonp(url,{params:{a:1,b:2}},{emulateJSON:true})
     .then(function(res){},function(){})

你可能感兴趣的:(12.15 默写)