自定义指令Custom Directives




自定义指令的对象提供了7个钩子函数:

created、beforeMounted、 mounted、 beforeUpdate、updated、beforeUnmount、unmounted

大多数情况仅需要使用mounted和updated。

对比vue的8个生命周期:

beforeCreate、created、beforeMount、mounted、beforeUpdate、updated、beforeUnmount、unmounted

你可能感兴趣的:(javascript,前端,vue.js)