ra-element 0.1.52 → 0.1.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/ra-upload.md +1 -1
- package/lib/components/ra-button/index.vue.d.ts +322 -22
- package/lib/components/ra-checkbox-group/index.vue.d.ts +238 -20
- package/lib/components/ra-date-picker/index.vue.d.ts +562 -1
- package/lib/components/ra-dialog/index.vue.d.ts +556 -41
- package/lib/components/ra-dialog-select/index.vue.d.ts +2 -2
- package/lib/components/ra-input/index.vue.d.ts +554 -23
- package/lib/components/ra-pagination/index.vue.d.ts +272 -29
- package/lib/components/ra-radio-group/index.vue.d.ts +262 -28
- package/lib/components/ra-table/component/pagination-group.vue.d.ts +1 -1
- package/lib/components/ra-table/component/table-column-item.vue.d.ts +29 -0
- package/lib/components/ra-table/component/top-module.vue.d.ts +85 -0
- package/lib/components/ra-tree-select/index.vue.d.ts +195 -29
- package/lib/components/ra-upload/index.vue.d.ts +549 -2
- package/lib/ra-element.css +1 -1
- package/lib/ra-element.es.js +2100 -17545
- package/lib/ra-element.es.js.map +1 -1
- package/lib/ra-element.umd.js +1 -34
- package/lib/ra-element.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -72,8 +72,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
72
72
|
onSizeChange?: ((...args: any[]) => any) | undefined;
|
|
73
73
|
}>, {
|
|
74
74
|
pageSize: number;
|
|
75
|
-
pageReqType: string;
|
|
76
75
|
pageTotal: number;
|
|
76
|
+
pageReqType: string;
|
|
77
77
|
pageNum: number;
|
|
78
78
|
paginationButtonNumber: number;
|
|
79
79
|
paginationLayout: string;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { tableColumnItemType } from '../type.ts';
|
|
3
|
+
declare function __VLS_template(): {
|
|
4
|
+
attrs: Partial<{}>;
|
|
5
|
+
slots: any;
|
|
6
|
+
refs: {};
|
|
7
|
+
rootEl: any;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
11
|
+
options: {
|
|
12
|
+
type: PropType<tableColumnItemType[]>;
|
|
13
|
+
default: () => never[];
|
|
14
|
+
};
|
|
15
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
16
|
+
options: {
|
|
17
|
+
type: PropType<tableColumnItemType[]>;
|
|
18
|
+
default: () => never[];
|
|
19
|
+
};
|
|
20
|
+
}>> & Readonly<{}>, {
|
|
21
|
+
options: tableColumnItemType[];
|
|
22
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
23
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
24
|
+
export default _default;
|
|
25
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
26
|
+
new (): {
|
|
27
|
+
$slots: S;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { TreeSelectOptions } from '../../ra-tree-select/type';
|
|
3
|
+
declare function __VLS_template(): {
|
|
4
|
+
attrs: Partial<{}>;
|
|
5
|
+
slots: {
|
|
6
|
+
topModuleLeft?(_: {}): any;
|
|
7
|
+
rightModuleLeft?(_: {}): any;
|
|
8
|
+
rightModuleCenter?(_: {}): any;
|
|
9
|
+
rightModuleRight?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: HTMLDivElement;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
16
|
+
enableFilterColumn: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
exportButtonText: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
exportNumberLimit: {
|
|
25
|
+
type: NumberConstructor;
|
|
26
|
+
default: number;
|
|
27
|
+
};
|
|
28
|
+
pageTotal: {
|
|
29
|
+
type: NumberConstructor;
|
|
30
|
+
default: number;
|
|
31
|
+
};
|
|
32
|
+
selectOptions: {
|
|
33
|
+
type: PropType<TreeSelectOptions[]>;
|
|
34
|
+
default: () => never[];
|
|
35
|
+
};
|
|
36
|
+
modelValue: {
|
|
37
|
+
type: PropType<string[]>;
|
|
38
|
+
default: () => never[];
|
|
39
|
+
};
|
|
40
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
41
|
+
"update:modelValue": (value: any[]) => any;
|
|
42
|
+
exportTable: () => any;
|
|
43
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
44
|
+
enableFilterColumn: {
|
|
45
|
+
type: BooleanConstructor;
|
|
46
|
+
default: boolean;
|
|
47
|
+
};
|
|
48
|
+
exportButtonText: {
|
|
49
|
+
type: StringConstructor;
|
|
50
|
+
default: string;
|
|
51
|
+
};
|
|
52
|
+
exportNumberLimit: {
|
|
53
|
+
type: NumberConstructor;
|
|
54
|
+
default: number;
|
|
55
|
+
};
|
|
56
|
+
pageTotal: {
|
|
57
|
+
type: NumberConstructor;
|
|
58
|
+
default: number;
|
|
59
|
+
};
|
|
60
|
+
selectOptions: {
|
|
61
|
+
type: PropType<TreeSelectOptions[]>;
|
|
62
|
+
default: () => never[];
|
|
63
|
+
};
|
|
64
|
+
modelValue: {
|
|
65
|
+
type: PropType<string[]>;
|
|
66
|
+
default: () => never[];
|
|
67
|
+
};
|
|
68
|
+
}>> & Readonly<{
|
|
69
|
+
"onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
|
|
70
|
+
onExportTable?: (() => any) | undefined;
|
|
71
|
+
}>, {
|
|
72
|
+
modelValue: string[];
|
|
73
|
+
enableFilterColumn: boolean;
|
|
74
|
+
exportButtonText: string;
|
|
75
|
+
exportNumberLimit: number;
|
|
76
|
+
pageTotal: number;
|
|
77
|
+
selectOptions: TreeSelectOptions[];
|
|
78
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
79
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
80
|
+
export default _default;
|
|
81
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
82
|
+
new (): {
|
|
83
|
+
$slots: S;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
@@ -19,37 +19,105 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
19
19
|
default: boolean;
|
|
20
20
|
};
|
|
21
21
|
}>, {
|
|
22
|
-
componentRef:
|
|
22
|
+
componentRef: Readonly<import('vue').ShallowRef<({
|
|
23
|
+
$: import('vue').ComponentInternalInstance;
|
|
24
|
+
$data: {};
|
|
25
|
+
$props: Partial<{} | {
|
|
26
|
+
[x: string]: any;
|
|
27
|
+
}> & Omit<{
|
|
28
|
+
readonly [x: string]: any;
|
|
29
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>;
|
|
30
|
+
$attrs: {
|
|
31
|
+
[x: string]: unknown;
|
|
32
|
+
};
|
|
33
|
+
$refs: {
|
|
34
|
+
[x: string]: unknown;
|
|
35
|
+
};
|
|
36
|
+
$slots: Readonly<{
|
|
37
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
38
|
+
}>;
|
|
39
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
40
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
41
|
+
$host: Element | null;
|
|
42
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
43
|
+
$el: any;
|
|
44
|
+
$options: import('vue').ComponentOptionsBase<Readonly<any>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
45
|
+
[key: string]: any;
|
|
46
|
+
}>, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Record<string, any>, string, {} | {
|
|
47
|
+
[x: string]: any;
|
|
48
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
49
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
50
|
+
created?: (() => void) | (() => void)[];
|
|
51
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
52
|
+
mounted?: (() => void) | (() => void)[];
|
|
53
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
54
|
+
updated?: (() => void) | (() => void)[];
|
|
55
|
+
activated?: (() => void) | (() => void)[];
|
|
56
|
+
deactivated?: (() => void) | (() => void)[];
|
|
57
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
58
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
59
|
+
destroyed?: (() => void) | (() => void)[];
|
|
60
|
+
unmounted?: (() => void) | (() => void)[];
|
|
61
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
62
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
63
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
64
|
+
};
|
|
65
|
+
$forceUpdate: () => void;
|
|
66
|
+
$nextTick: typeof import('vue').nextTick;
|
|
67
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
68
|
+
} & Readonly<{}> & Omit<Readonly<any>, never> & import('vue').ShallowUnwrapRef<() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
23
69
|
[key: string]: any;
|
|
24
|
-
}
|
|
70
|
+
}>> & {} & import('vue').ComponentCustomProperties & {}) | ({
|
|
71
|
+
$: import('vue').ComponentInternalInstance;
|
|
72
|
+
$data: {};
|
|
73
|
+
$props: Partial<{} | {
|
|
74
|
+
[x: string]: any;
|
|
75
|
+
}> & Omit<{
|
|
76
|
+
readonly [x: string]: any;
|
|
77
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>;
|
|
78
|
+
$attrs: {
|
|
79
|
+
[x: string]: unknown;
|
|
80
|
+
};
|
|
81
|
+
$refs: {
|
|
82
|
+
[x: string]: unknown;
|
|
83
|
+
};
|
|
84
|
+
$slots: Readonly<{
|
|
85
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
86
|
+
}>;
|
|
87
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
88
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
89
|
+
$host: Element | null;
|
|
90
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
91
|
+
$el: any;
|
|
92
|
+
$options: import('vue').ComponentOptionsBase<Readonly<any>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
93
|
+
[key: string]: any;
|
|
94
|
+
}>, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Record<string, any>, string, {} | {
|
|
95
|
+
[x: string]: any;
|
|
96
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
97
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
98
|
+
created?: (() => void) | (() => void)[];
|
|
99
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
100
|
+
mounted?: (() => void) | (() => void)[];
|
|
101
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
102
|
+
updated?: (() => void) | (() => void)[];
|
|
103
|
+
activated?: (() => void) | (() => void)[];
|
|
104
|
+
deactivated?: (() => void) | (() => void)[];
|
|
105
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
106
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
107
|
+
destroyed?: (() => void) | (() => void)[];
|
|
108
|
+
unmounted?: (() => void) | (() => void)[];
|
|
109
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
110
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
111
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
112
|
+
};
|
|
113
|
+
$forceUpdate: () => void;
|
|
114
|
+
$nextTick: typeof import('vue').nextTick;
|
|
115
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
116
|
+
} & Readonly<{
|
|
25
117
|
[x: string]: any;
|
|
26
|
-
}
|
|
27
|
-
P: {};
|
|
28
|
-
B: {};
|
|
29
|
-
D: {};
|
|
30
|
-
C: {};
|
|
31
|
-
M: {};
|
|
32
|
-
Defaults: {};
|
|
33
|
-
}, Readonly<any>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
118
|
+
}> & Omit<Readonly<any>, never> & import('vue').ShallowUnwrapRef<() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
34
119
|
[key: string]: any;
|
|
35
|
-
}
|
|
36
|
-
[x: string]: any;
|
|
37
|
-
}> | null, import('vue').CreateComponentPublicInstanceWithMixins<Readonly<any>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
38
|
-
[key: string]: any;
|
|
39
|
-
}>, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Record<string, any>, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {} | {
|
|
40
|
-
[x: string]: any;
|
|
41
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
42
|
-
P: {};
|
|
43
|
-
B: {};
|
|
44
|
-
D: {};
|
|
45
|
-
C: {};
|
|
46
|
-
M: {};
|
|
47
|
-
Defaults: {};
|
|
48
|
-
}, Readonly<any>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
49
|
-
[key: string]: any;
|
|
50
|
-
}>, {}, {}, {}, {} | {
|
|
51
|
-
[x: string]: any;
|
|
52
|
-
}> | null>;
|
|
120
|
+
}>> & {} & import('vue').ComponentCustomProperties & {}) | null>>;
|
|
53
121
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
54
122
|
options: {
|
|
55
123
|
type: PropType<TreeSelectOptions[]>;
|
|
@@ -68,6 +136,104 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
68
136
|
clearable: boolean;
|
|
69
137
|
collapseTags: boolean;
|
|
70
138
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
71
|
-
componentRef:
|
|
139
|
+
componentRef: ({
|
|
140
|
+
$: import('vue').ComponentInternalInstance;
|
|
141
|
+
$data: {};
|
|
142
|
+
$props: Partial<{} | {
|
|
143
|
+
[x: string]: any;
|
|
144
|
+
}> & Omit<{
|
|
145
|
+
readonly [x: string]: any;
|
|
146
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>;
|
|
147
|
+
$attrs: {
|
|
148
|
+
[x: string]: unknown;
|
|
149
|
+
};
|
|
150
|
+
$refs: {
|
|
151
|
+
[x: string]: unknown;
|
|
152
|
+
};
|
|
153
|
+
$slots: Readonly<{
|
|
154
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
155
|
+
}>;
|
|
156
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
157
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
158
|
+
$host: Element | null;
|
|
159
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
160
|
+
$el: any;
|
|
161
|
+
$options: import('vue').ComponentOptionsBase<Readonly<any>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
162
|
+
[key: string]: any;
|
|
163
|
+
}>, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Record<string, any>, string, {} | {
|
|
164
|
+
[x: string]: any;
|
|
165
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
166
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
167
|
+
created?: (() => void) | (() => void)[];
|
|
168
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
169
|
+
mounted?: (() => void) | (() => void)[];
|
|
170
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
171
|
+
updated?: (() => void) | (() => void)[];
|
|
172
|
+
activated?: (() => void) | (() => void)[];
|
|
173
|
+
deactivated?: (() => void) | (() => void)[];
|
|
174
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
175
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
176
|
+
destroyed?: (() => void) | (() => void)[];
|
|
177
|
+
unmounted?: (() => void) | (() => void)[];
|
|
178
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
179
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
180
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
181
|
+
};
|
|
182
|
+
$forceUpdate: () => void;
|
|
183
|
+
$nextTick: typeof import('vue').nextTick;
|
|
184
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
185
|
+
} & Readonly<{}> & Omit<Readonly<any>, never> & import('vue').ShallowUnwrapRef<() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
186
|
+
[key: string]: any;
|
|
187
|
+
}>> & {} & import('vue').ComponentCustomProperties & {}) | ({
|
|
188
|
+
$: import('vue').ComponentInternalInstance;
|
|
189
|
+
$data: {};
|
|
190
|
+
$props: Partial<{} | {
|
|
191
|
+
[x: string]: any;
|
|
192
|
+
}> & Omit<{
|
|
193
|
+
readonly [x: string]: any;
|
|
194
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>;
|
|
195
|
+
$attrs: {
|
|
196
|
+
[x: string]: unknown;
|
|
197
|
+
};
|
|
198
|
+
$refs: {
|
|
199
|
+
[x: string]: unknown;
|
|
200
|
+
};
|
|
201
|
+
$slots: Readonly<{
|
|
202
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
203
|
+
}>;
|
|
204
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
205
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
206
|
+
$host: Element | null;
|
|
207
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
208
|
+
$el: any;
|
|
209
|
+
$options: import('vue').ComponentOptionsBase<Readonly<any>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
210
|
+
[key: string]: any;
|
|
211
|
+
}>, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Record<string, any>, string, {} | {
|
|
212
|
+
[x: string]: any;
|
|
213
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
214
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
215
|
+
created?: (() => void) | (() => void)[];
|
|
216
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
217
|
+
mounted?: (() => void) | (() => void)[];
|
|
218
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
219
|
+
updated?: (() => void) | (() => void)[];
|
|
220
|
+
activated?: (() => void) | (() => void)[];
|
|
221
|
+
deactivated?: (() => void) | (() => void)[];
|
|
222
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
223
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
224
|
+
destroyed?: (() => void) | (() => void)[];
|
|
225
|
+
unmounted?: (() => void) | (() => void)[];
|
|
226
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
227
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
228
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
229
|
+
};
|
|
230
|
+
$forceUpdate: () => void;
|
|
231
|
+
$nextTick: typeof import('vue').nextTick;
|
|
232
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
233
|
+
} & Readonly<{
|
|
234
|
+
[x: string]: any;
|
|
235
|
+
}> & Omit<Readonly<any>, never> & import('vue').ShallowUnwrapRef<() => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
236
|
+
[key: string]: any;
|
|
237
|
+
}>> & {} & import('vue').ComponentCustomProperties & {}) | null;
|
|
72
238
|
}, any>;
|
|
73
239
|
export default _default;
|