@marlonwiss/nuxt-directives
Version:
A Nuxt 3 module that automatically installs a collection of useful Vue 3 directives into your application.
22 lines (18 loc) • 459 B
TypeScript
import { vCase, vDefault, vFocus, vSwitch } from "@marlonwiss/vue-directives";
declare module 'vue' {
export interface GlobalDirectives {
vFocus: typeof vFocus;
vSwitch: typeof vSwitch
vCase: typeof vCase
vDefault: typeof vDefault
}
}
declare module '@vue/runtime-core' {
export interface GlobalDirectives {
vFocus: typeof vFocus;
vSwitch: typeof vSwitch
vCase: typeof vCase
vDefault: typeof vDefault
}
}
export { }