Appearance
vue3中需要通过createApp(),创建一个新的根组件来达到类似的效果。
createApp(comp).mount('element')
类似与vue2this.destroy()来编程式的销毁一个组件,vue3没有暴漏这样的API,只能通过v-if。
this.destroy()
v-if
vue3的hooks函数通常结合响应式api与vue3暴漏出的钩子函数来解决。