Vue lifecycle hook little trick
组件上的 hook 小 trick
<Child @mounted="doSomething"/>mounted() {
this.$emit("mounted");
}<Child @hook:mounted="doSomething" />
<Child @hook:updated="doSomething" />方法中的 hook 小trick
mounted: function () {
var picker = new Pikaday({
field: this.$refs.input,
format: 'YYYY-MM-DD'
})
this.$once('hook:beforeDestroy', function () {
picker.destroy()
})
}最后更新于