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 }]
])
}

posted @ 2023-02-24 14:04  lzhflzjx  阅读(727)  评论(0编辑  收藏  举报