interface ObjectDirective Properties beforeMount Signature beforeMount?: DirectiveHook<T, null, V>; beforeUnmount Signature beforeUnmount?: DirectiveHook<T, null, V>; beforeUpdate Signature beforeUpdate?: DirectiveHook<T, VNode<any, T>, V>; created Signature created?: DirectiveHook<T, null, V>; deep Signature deep?: boolean; getSSRProps Signature getSSRProps?: SSRDirectiveHook; mounted Signature mounted?: DirectiveHook<T, null, V>; unmounted Signature unmounted?: DirectiveHook<T, null, V>; updated Signature updated?: DirectiveHook<T, VNode<any, T>, V>; MethodOptions Renderer