File tree Expand file tree Collapse file tree 2 files changed +22
-21
lines changed
Expand file tree Collapse file tree 2 files changed +22
-21
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,16 @@ import type {
1717} from 'vuetify/components' ;
1818import type { IconOptions , ThemeInstance } from 'vuetify' ;
1919import type { EventBusKey } from '@vueuse/core' ;
20+ import type {
21+ VInlineCheckbox ,
22+ VInlineCustomField ,
23+ VInlineSelect ,
24+ VInlineSwitch ,
25+ VInlineTextField ,
26+ VInlineTextarea ,
27+ } from '../' ;
28+
29+ export * from '../index' ;
2030
2131
2232// -------------------------------------------------- Misc //
@@ -463,3 +473,15 @@ export interface UseTruthyModelValue {
463473 }
464474 ) : boolean ;
465475}
476+
477+
478+ declare module 'vue' {
479+ export interface GlobalComponents {
480+ VInlineCheckbox : typeof VInlineCheckbox ;
481+ VInlineCustomField : typeof VInlineCustomField ;
482+ VInlineSelect : typeof VInlineSelect ;
483+ VInlineSwitch : typeof VInlineSwitch ;
484+ VInlineTextField : typeof VInlineTextField ;
485+ VInlineTextarea : typeof VInlineTextarea ;
486+ }
487+ }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments