Interface DirectiveBinding<V>
interface DirectiveBinding<V> { arg?: string; dir: ObjectDirective<any, V>; instance: null | ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>; modifiers: DirectiveModifiers; oldValue: null | V; value: V; } Properties
Optional
arg
arg?: string
dir
instance
instance: null | ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> modifiers
oldValue
value
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] ])