vue3 h函数
1. 自定义指令(withDirectives 仅可在setup或render函数中使用)
可以使用 withDirectives 将自定义指令应用于 VNode:
const { h, resolveDirective, withDirectives } = Vue
// ...
// <div v-pin:top.animate="200"></div>
render () {
const pin = resolveDirective('pin')
return withDirectives(h('div'), [
[pin, 200, 'top', { animate: true }]
])
}
君不见,高堂明镜悲白发,朝如青丝暮成雪