- We've got some components
A
,B
andC
which provide different slots.const A = { template: `<div><slot name="a">Default A Content</slot></div>` }
const B = {
/** | |
* custom typing directive | |
* pass a function to this Directive, change inputInterval value to increase or decrease reactivity | |
*/ | |
import type { DirectiveBinding, VNode, VueElement } from "vue"; | |
export const typing = { | |
beforeMount(el: HTMLInputElement | VueElement, binding: DirectiveBinding, vnode: VNode) { | |
void vnode; |