Runtime helper for applying directives to a vnode. Example usage:
const comp = resolveComponent('comp') const foo = resolveDirective('foo') const bar = resolveDirective('bar')
return withDirectives(h(comp), [ [foo, this.x], [bar, this.y] ])
Optional
Runtime helper for applying directives to a vnode. Example usage:
const comp = resolveComponent('comp') const foo = resolveDirective('foo') const bar = resolveDirective('bar')
return withDirectives(h(comp), [ [foo, this.x], [bar, this.y] ])