vuejs总结

1.vue+vueRouter执行顺序(按书写顺依次执行)

export default({

created(){},//初始化

beforeCompile(){},//编译前

compiled(){},//编译完成

route:{//每次切换路由,在渲染出页面前都会执行

data(){}

},

ready(){},//渲染页面完成

beforeDestroy(){},//销毁前

destroyed(){}//销毁完成

})

你可能感兴趣的:(vuejs总结)