setupin 3.0.0 → 3.1.1
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/README.md +95 -16
- package/README.zh-CN.md +98 -16
- package/dist/main.js +162 -142
- package/dist/main.prod.js +100 -103
- package/package.json +3 -6
- package/dist/main.d.mts +0 -954
- package/dist/main.d.ts +0 -954
package/dist/main.d.mts
DELETED
|
@@ -1,954 +0,0 @@
|
|
|
1
|
-
declare namespace BaseTransition {
|
|
2
|
-
export let name: string;
|
|
3
|
-
export { BaseTransitionPropsValidators as props };
|
|
4
|
-
export function setup(props: any, { slots }: {
|
|
5
|
-
slots: any;
|
|
6
|
-
}): () => any;
|
|
7
|
-
}
|
|
8
|
-
declare namespace BaseTransitionPropsValidators {
|
|
9
|
-
export let mode: StringConstructor;
|
|
10
|
-
export let appear: BooleanConstructor;
|
|
11
|
-
export let persisted: BooleanConstructor;
|
|
12
|
-
export { TransitionHookValidator as onBeforeEnter };
|
|
13
|
-
export { TransitionHookValidator as onEnter };
|
|
14
|
-
export { TransitionHookValidator as onAfterEnter };
|
|
15
|
-
export { TransitionHookValidator as onEnterCancelled };
|
|
16
|
-
export { TransitionHookValidator as onBeforeLeave };
|
|
17
|
-
export { TransitionHookValidator as onLeave };
|
|
18
|
-
export { TransitionHookValidator as onAfterLeave };
|
|
19
|
-
export { TransitionHookValidator as onLeaveCancelled };
|
|
20
|
-
export { TransitionHookValidator as onBeforeAppear };
|
|
21
|
-
export { TransitionHookValidator as onAppear };
|
|
22
|
-
export { TransitionHookValidator as onAfterAppear };
|
|
23
|
-
export { TransitionHookValidator as onAppearCancelled };
|
|
24
|
-
}
|
|
25
|
-
declare const Comment: unique symbol;
|
|
26
|
-
declare const DeprecationTypes: null;
|
|
27
|
-
declare class EffectScope {
|
|
28
|
-
constructor(detached?: boolean);
|
|
29
|
-
detached: boolean;
|
|
30
|
-
/**
|
|
31
|
-
* @internal
|
|
32
|
-
*/
|
|
33
|
-
_active: boolean;
|
|
34
|
-
/**
|
|
35
|
-
* @internal
|
|
36
|
-
*/
|
|
37
|
-
effects: any[];
|
|
38
|
-
/**
|
|
39
|
-
* @internal
|
|
40
|
-
*/
|
|
41
|
-
cleanups: any[];
|
|
42
|
-
_isPaused: boolean;
|
|
43
|
-
parent: any;
|
|
44
|
-
index: number | undefined;
|
|
45
|
-
get active(): boolean;
|
|
46
|
-
pause(): void;
|
|
47
|
-
/**
|
|
48
|
-
* Resumes the effect scope, including all child scopes and effects.
|
|
49
|
-
*/
|
|
50
|
-
resume(): void;
|
|
51
|
-
run(fn: any): any;
|
|
52
|
-
/**
|
|
53
|
-
* This should only be called on non-detached scopes
|
|
54
|
-
* @internal
|
|
55
|
-
*/
|
|
56
|
-
on(): void;
|
|
57
|
-
/**
|
|
58
|
-
* This should only be called on non-detached scopes
|
|
59
|
-
* @internal
|
|
60
|
-
*/
|
|
61
|
-
off(): void;
|
|
62
|
-
stop(fromParent: any): void;
|
|
63
|
-
}
|
|
64
|
-
declare const ErrorCodes: {
|
|
65
|
-
SETUP_FUNCTION: number;
|
|
66
|
-
"0": string;
|
|
67
|
-
RENDER_FUNCTION: number;
|
|
68
|
-
"1": string;
|
|
69
|
-
NATIVE_EVENT_HANDLER: number;
|
|
70
|
-
"5": string;
|
|
71
|
-
COMPONENT_EVENT_HANDLER: number;
|
|
72
|
-
"6": string;
|
|
73
|
-
VNODE_HOOK: number;
|
|
74
|
-
"7": string;
|
|
75
|
-
DIRECTIVE_HOOK: number;
|
|
76
|
-
"8": string;
|
|
77
|
-
TRANSITION_HOOK: number;
|
|
78
|
-
"9": string;
|
|
79
|
-
APP_ERROR_HANDLER: number;
|
|
80
|
-
"10": string;
|
|
81
|
-
APP_WARN_HANDLER: number;
|
|
82
|
-
"11": string;
|
|
83
|
-
FUNCTION_REF: number;
|
|
84
|
-
"12": string;
|
|
85
|
-
ASYNC_COMPONENT_LOADER: number;
|
|
86
|
-
"13": string;
|
|
87
|
-
SCHEDULER: number;
|
|
88
|
-
"14": string;
|
|
89
|
-
COMPONENT_UPDATE: number;
|
|
90
|
-
"15": string;
|
|
91
|
-
APP_UNMOUNT_CLEANUP: number;
|
|
92
|
-
"16": string;
|
|
93
|
-
};
|
|
94
|
-
declare const ErrorTypeStrings: {
|
|
95
|
-
sp: string;
|
|
96
|
-
bc: string;
|
|
97
|
-
c: string;
|
|
98
|
-
bm: string;
|
|
99
|
-
m: string;
|
|
100
|
-
bu: string;
|
|
101
|
-
u: string;
|
|
102
|
-
bum: string;
|
|
103
|
-
um: string;
|
|
104
|
-
a: string;
|
|
105
|
-
da: string;
|
|
106
|
-
ec: string;
|
|
107
|
-
rtc: string;
|
|
108
|
-
rtg: string;
|
|
109
|
-
0: string;
|
|
110
|
-
1: string;
|
|
111
|
-
2: string;
|
|
112
|
-
3: string;
|
|
113
|
-
4: string;
|
|
114
|
-
5: string;
|
|
115
|
-
6: string;
|
|
116
|
-
7: string;
|
|
117
|
-
8: string;
|
|
118
|
-
9: string;
|
|
119
|
-
10: string;
|
|
120
|
-
11: string;
|
|
121
|
-
12: string;
|
|
122
|
-
13: string;
|
|
123
|
-
14: string;
|
|
124
|
-
15: string;
|
|
125
|
-
16: string;
|
|
126
|
-
};
|
|
127
|
-
declare const Fragment: unique symbol;
|
|
128
|
-
declare namespace KeepAlive {
|
|
129
|
-
let name_1: string;
|
|
130
|
-
export { name_1 as name };
|
|
131
|
-
export let __isKeepAlive: boolean;
|
|
132
|
-
export namespace props {
|
|
133
|
-
let include: (StringConstructor | ArrayConstructor | RegExpConstructor)[];
|
|
134
|
-
let exclude: (StringConstructor | ArrayConstructor | RegExpConstructor)[];
|
|
135
|
-
let max: (StringConstructor | NumberConstructor)[];
|
|
136
|
-
}
|
|
137
|
-
export function setup(props: any, { slots }: {
|
|
138
|
-
slots: any;
|
|
139
|
-
}): () => any;
|
|
140
|
-
}
|
|
141
|
-
declare class ReactiveEffect {
|
|
142
|
-
constructor(fn: any);
|
|
143
|
-
fn: any;
|
|
144
|
-
/**
|
|
145
|
-
* @internal
|
|
146
|
-
*/
|
|
147
|
-
flags: number;
|
|
148
|
-
pause(): void;
|
|
149
|
-
resume(): void;
|
|
150
|
-
/**
|
|
151
|
-
* @internal
|
|
152
|
-
*/
|
|
153
|
-
notify(): void;
|
|
154
|
-
run(): any;
|
|
155
|
-
stop(): void;
|
|
156
|
-
trigger(): void;
|
|
157
|
-
/**
|
|
158
|
-
* @internal
|
|
159
|
-
*/
|
|
160
|
-
runIfDirty(): void;
|
|
161
|
-
get dirty(): boolean;
|
|
162
|
-
}
|
|
163
|
-
declare const Static: unique symbol;
|
|
164
|
-
declare namespace Suspense {
|
|
165
|
-
let name_2: string;
|
|
166
|
-
export { name_2 as name };
|
|
167
|
-
export let __isSuspense: boolean;
|
|
168
|
-
export function process(n1: any, n2: any, container: any, anchor: any, parentComponent: any, parentSuspense: any, namespace: any, slotScopeIds: any, optimized: any, rendererInternals: any): void;
|
|
169
|
-
export { hydrateSuspense as hydrate };
|
|
170
|
-
export { normalizeSuspenseChildren as normalize };
|
|
171
|
-
}
|
|
172
|
-
declare namespace Teleport {
|
|
173
|
-
let name_3: string;
|
|
174
|
-
export { name_3 as name };
|
|
175
|
-
export let __isTeleport: boolean;
|
|
176
|
-
export function process(n1: any, n2: any, container: any, anchor: any, parentComponent: any, parentSuspense: any, namespace: any, slotScopeIds: any, optimized: any, internals: any): void;
|
|
177
|
-
export function remove(vnode: any, parentComponent: any, parentSuspense: any, { um: unmount, o: { remove: hostRemove } }: {
|
|
178
|
-
um: any;
|
|
179
|
-
o: {
|
|
180
|
-
remove: any;
|
|
181
|
-
};
|
|
182
|
-
}, doRemove: any): void;
|
|
183
|
-
export { moveTeleport as move };
|
|
184
|
-
export { hydrateTeleport as hydrate };
|
|
185
|
-
}
|
|
186
|
-
declare const Text: unique symbol;
|
|
187
|
-
declare namespace TrackOpTypes {
|
|
188
|
-
let GET: string;
|
|
189
|
-
let HAS: string;
|
|
190
|
-
let ITERATE: string;
|
|
191
|
-
}
|
|
192
|
-
declare const Transition: any;
|
|
193
|
-
declare const TransitionGroup: any;
|
|
194
|
-
declare namespace TriggerOpTypes {
|
|
195
|
-
let SET: string;
|
|
196
|
-
let ADD: string;
|
|
197
|
-
let DELETE: string;
|
|
198
|
-
let CLEAR: string;
|
|
199
|
-
}
|
|
200
|
-
declare const VueElement_base: {
|
|
201
|
-
new (): {};
|
|
202
|
-
};
|
|
203
|
-
declare class VueElement extends VueElement_base {
|
|
204
|
-
constructor(_def: any, _props?: {}, _createApp?: (...args: any[]) => any);
|
|
205
|
-
_def: any;
|
|
206
|
-
_props: {};
|
|
207
|
-
_createApp: (...args: any[]) => any;
|
|
208
|
-
_isVueCE: boolean;
|
|
209
|
-
/**
|
|
210
|
-
* @internal
|
|
211
|
-
*/
|
|
212
|
-
_instance: any;
|
|
213
|
-
/**
|
|
214
|
-
* @internal
|
|
215
|
-
*/
|
|
216
|
-
_app: any;
|
|
217
|
-
/**
|
|
218
|
-
* @internal
|
|
219
|
-
*/
|
|
220
|
-
_nonce: any;
|
|
221
|
-
_connected: boolean;
|
|
222
|
-
_resolved: boolean;
|
|
223
|
-
_numberProps: any;
|
|
224
|
-
_styleChildren: WeakSet<WeakKey>;
|
|
225
|
-
_ob: MutationObserver | null;
|
|
226
|
-
_root: any;
|
|
227
|
-
connectedCallback(): void;
|
|
228
|
-
_parent: this | undefined;
|
|
229
|
-
_pendingResolve: any;
|
|
230
|
-
_setParent(parent?: this | undefined): void;
|
|
231
|
-
disconnectedCallback(): void;
|
|
232
|
-
/**
|
|
233
|
-
* resolve inner component definition (handle possible async component)
|
|
234
|
-
*/
|
|
235
|
-
_resolveDef(): void;
|
|
236
|
-
_mount(def: any): void;
|
|
237
|
-
_resolveProps(def: any): void;
|
|
238
|
-
_setAttr(key: any): void;
|
|
239
|
-
/**
|
|
240
|
-
* @internal
|
|
241
|
-
*/
|
|
242
|
-
_getProp(key: any): any;
|
|
243
|
-
/**
|
|
244
|
-
* @internal
|
|
245
|
-
*/
|
|
246
|
-
_setProp(key: any, val: any, shouldReflect?: boolean, shouldUpdate?: boolean): void;
|
|
247
|
-
_update(): void;
|
|
248
|
-
_createVNode(): any;
|
|
249
|
-
_applyStyles(styles: any, owner: any): void;
|
|
250
|
-
_childStyles: Map<any, any> | undefined;
|
|
251
|
-
_styles: any[] | undefined;
|
|
252
|
-
/**
|
|
253
|
-
* Only called when shadowRoot is false
|
|
254
|
-
*/
|
|
255
|
-
_parseSlots(): void;
|
|
256
|
-
_slots: {} | undefined;
|
|
257
|
-
/**
|
|
258
|
-
* Only called when shadowRoot is false
|
|
259
|
-
*/
|
|
260
|
-
_renderSlots(): void;
|
|
261
|
-
/**
|
|
262
|
-
* @internal
|
|
263
|
-
*/
|
|
264
|
-
_injectChildStyle(comp: any): void;
|
|
265
|
-
/**
|
|
266
|
-
* @internal
|
|
267
|
-
*/
|
|
268
|
-
_removeChildStyle(comp: any): void;
|
|
269
|
-
}
|
|
270
|
-
declare function assertNumber(val: any, type: any): void;
|
|
271
|
-
declare function callWithAsyncErrorHandling(fn: any, instance: any, type: any, args: any): any;
|
|
272
|
-
declare function callWithErrorHandling(fn: any, instance: any, type: any, args: any): any;
|
|
273
|
-
declare function camelize(str: any): any;
|
|
274
|
-
declare function capitalize(str: any): any;
|
|
275
|
-
declare function cloneVNode(vnode: any, extraProps: any, mergeRef?: boolean, cloneTransition?: boolean): any;
|
|
276
|
-
declare const compatUtils: null;
|
|
277
|
-
declare function compileToFunction(template: any, options: any): any;
|
|
278
|
-
declare function computed(getterOrOptions: any, debugOptions: any): ComputedRefImpl;
|
|
279
|
-
declare function createApp(...args: any[]): any;
|
|
280
|
-
declare function createBlock(type: any, props: any, children: any, patchFlag: any, dynamicProps: any): any;
|
|
281
|
-
declare function createCommentVNode(text?: string, asBlock?: boolean): any;
|
|
282
|
-
declare function createElementBlock(type: any, props: any, children: any, patchFlag: any, dynamicProps: any, shapeFlag: any): any;
|
|
283
|
-
declare function createBaseVNode(type: any, props?: null, children?: null, patchFlag?: number, dynamicProps?: null, shapeFlag?: number, isBlockNode?: boolean, needFullChildrenNormalization?: boolean): {
|
|
284
|
-
__v_isVNode: boolean;
|
|
285
|
-
__v_skip: boolean;
|
|
286
|
-
type: any;
|
|
287
|
-
props: null;
|
|
288
|
-
key: null;
|
|
289
|
-
ref: null;
|
|
290
|
-
scopeId: any;
|
|
291
|
-
slotScopeIds: null;
|
|
292
|
-
children: null;
|
|
293
|
-
component: null;
|
|
294
|
-
suspense: null;
|
|
295
|
-
ssContent: null;
|
|
296
|
-
ssFallback: null;
|
|
297
|
-
dirs: null;
|
|
298
|
-
transition: null;
|
|
299
|
-
el: null;
|
|
300
|
-
anchor: null;
|
|
301
|
-
target: null;
|
|
302
|
-
targetStart: null;
|
|
303
|
-
targetAnchor: null;
|
|
304
|
-
staticCount: number;
|
|
305
|
-
shapeFlag: number;
|
|
306
|
-
patchFlag: number;
|
|
307
|
-
dynamicProps: null;
|
|
308
|
-
dynamicChildren: null;
|
|
309
|
-
appContext: null;
|
|
310
|
-
ctx: any;
|
|
311
|
-
};
|
|
312
|
-
declare function createHydrationRenderer(options: any): {
|
|
313
|
-
render: (vnode: any, container: any, namespace: any) => void;
|
|
314
|
-
hydrate: any;
|
|
315
|
-
createApp: (rootComponent: any, rootProps?: null) => {
|
|
316
|
-
_uid: number;
|
|
317
|
-
_component: any;
|
|
318
|
-
_props: null;
|
|
319
|
-
_container: null;
|
|
320
|
-
_context: {
|
|
321
|
-
app: null;
|
|
322
|
-
config: {
|
|
323
|
-
isNativeTag: () => boolean;
|
|
324
|
-
performance: boolean;
|
|
325
|
-
globalProperties: {};
|
|
326
|
-
optionMergeStrategies: {};
|
|
327
|
-
errorHandler: undefined;
|
|
328
|
-
warnHandler: undefined;
|
|
329
|
-
compilerOptions: {};
|
|
330
|
-
};
|
|
331
|
-
mixins: never[];
|
|
332
|
-
components: {};
|
|
333
|
-
directives: {};
|
|
334
|
-
provides: any;
|
|
335
|
-
optionsCache: WeakMap<WeakKey, any>;
|
|
336
|
-
propsCache: WeakMap<WeakKey, any>;
|
|
337
|
-
emitsCache: WeakMap<WeakKey, any>;
|
|
338
|
-
};
|
|
339
|
-
_instance: null;
|
|
340
|
-
version: string;
|
|
341
|
-
config: {
|
|
342
|
-
isNativeTag: () => boolean;
|
|
343
|
-
performance: boolean;
|
|
344
|
-
globalProperties: {};
|
|
345
|
-
optionMergeStrategies: {};
|
|
346
|
-
errorHandler: undefined;
|
|
347
|
-
warnHandler: undefined;
|
|
348
|
-
compilerOptions: {};
|
|
349
|
-
};
|
|
350
|
-
use(plugin: any, ...options: any[]): any;
|
|
351
|
-
mixin(mixin: any): any;
|
|
352
|
-
component(name: any, component: any): any;
|
|
353
|
-
directive(name: any, directive: any): any;
|
|
354
|
-
mount(rootContainer: any, isHydrate: any, namespace: any): any;
|
|
355
|
-
onUnmount(cleanupFn: any): void;
|
|
356
|
-
unmount(): void;
|
|
357
|
-
provide(key: any, value: any): any;
|
|
358
|
-
runWithContext(fn: any): any;
|
|
359
|
-
};
|
|
360
|
-
};
|
|
361
|
-
declare function createPropsRestProxy(props: any, excludedKeys: any): {};
|
|
362
|
-
declare function createRenderer(options: any): {
|
|
363
|
-
render: (vnode: any, container: any, namespace: any) => void;
|
|
364
|
-
hydrate: any;
|
|
365
|
-
createApp: (rootComponent: any, rootProps?: null) => {
|
|
366
|
-
_uid: number;
|
|
367
|
-
_component: any;
|
|
368
|
-
_props: null;
|
|
369
|
-
_container: null;
|
|
370
|
-
_context: {
|
|
371
|
-
app: null;
|
|
372
|
-
config: {
|
|
373
|
-
isNativeTag: () => boolean;
|
|
374
|
-
performance: boolean;
|
|
375
|
-
globalProperties: {};
|
|
376
|
-
optionMergeStrategies: {};
|
|
377
|
-
errorHandler: undefined;
|
|
378
|
-
warnHandler: undefined;
|
|
379
|
-
compilerOptions: {};
|
|
380
|
-
};
|
|
381
|
-
mixins: never[];
|
|
382
|
-
components: {};
|
|
383
|
-
directives: {};
|
|
384
|
-
provides: any;
|
|
385
|
-
optionsCache: WeakMap<WeakKey, any>;
|
|
386
|
-
propsCache: WeakMap<WeakKey, any>;
|
|
387
|
-
emitsCache: WeakMap<WeakKey, any>;
|
|
388
|
-
};
|
|
389
|
-
_instance: null;
|
|
390
|
-
version: string;
|
|
391
|
-
config: {
|
|
392
|
-
isNativeTag: () => boolean;
|
|
393
|
-
performance: boolean;
|
|
394
|
-
globalProperties: {};
|
|
395
|
-
optionMergeStrategies: {};
|
|
396
|
-
errorHandler: undefined;
|
|
397
|
-
warnHandler: undefined;
|
|
398
|
-
compilerOptions: {};
|
|
399
|
-
};
|
|
400
|
-
use(plugin: any, ...options: any[]): any;
|
|
401
|
-
mixin(mixin: any): any;
|
|
402
|
-
component(name: any, component: any): any;
|
|
403
|
-
directive(name: any, directive: any): any;
|
|
404
|
-
mount(rootContainer: any, isHydrate: any, namespace: any): any;
|
|
405
|
-
onUnmount(cleanupFn: any): void;
|
|
406
|
-
unmount(): void;
|
|
407
|
-
provide(key: any, value: any): any;
|
|
408
|
-
runWithContext(fn: any): any;
|
|
409
|
-
};
|
|
410
|
-
};
|
|
411
|
-
declare function createSSRApp(...args: any[]): any;
|
|
412
|
-
declare function createSlots(slots: any, dynamicSlots: any): any;
|
|
413
|
-
declare function createStaticVNode(content: any, numberOfNodes: any): any;
|
|
414
|
-
declare function createTextVNode(text?: string, flag?: number): any;
|
|
415
|
-
declare function createVNode(...args: any[]): any;
|
|
416
|
-
declare function customRef(factory: any): CustomRefImpl;
|
|
417
|
-
/*! #__NO_SIDE_EFFECTS__ */
|
|
418
|
-
declare function defineAsyncComponent(source: any): any;
|
|
419
|
-
/*! #__NO_SIDE_EFFECTS__ */
|
|
420
|
-
declare function defineComponent(options: any, extraOptions: any): any;
|
|
421
|
-
/*! #__NO_SIDE_EFFECTS__ */
|
|
422
|
-
declare function defineCustomElement(options: any, extraOptions: any, _createApp: any): {
|
|
423
|
-
new (initialProps: any): {
|
|
424
|
-
_def: any;
|
|
425
|
-
_props: {};
|
|
426
|
-
_createApp: (...args: any[]) => any;
|
|
427
|
-
_isVueCE: boolean;
|
|
428
|
-
/**
|
|
429
|
-
* @internal
|
|
430
|
-
*/
|
|
431
|
-
_instance: any;
|
|
432
|
-
/**
|
|
433
|
-
* @internal
|
|
434
|
-
*/
|
|
435
|
-
_app: any;
|
|
436
|
-
/**
|
|
437
|
-
* @internal
|
|
438
|
-
*/
|
|
439
|
-
_nonce: any;
|
|
440
|
-
_connected: boolean;
|
|
441
|
-
_resolved: boolean;
|
|
442
|
-
_numberProps: any;
|
|
443
|
-
_styleChildren: WeakSet<WeakKey>;
|
|
444
|
-
_ob: MutationObserver | null;
|
|
445
|
-
_root: any;
|
|
446
|
-
connectedCallback(): void;
|
|
447
|
-
_parent: any | undefined;
|
|
448
|
-
_pendingResolve: any;
|
|
449
|
-
_setParent(parent?: any | undefined): void;
|
|
450
|
-
disconnectedCallback(): void;
|
|
451
|
-
/**
|
|
452
|
-
* resolve inner component definition (handle possible async component)
|
|
453
|
-
*/
|
|
454
|
-
_resolveDef(): void;
|
|
455
|
-
_mount(def: any): void;
|
|
456
|
-
_resolveProps(def: any): void;
|
|
457
|
-
_setAttr(key: any): void;
|
|
458
|
-
/**
|
|
459
|
-
* @internal
|
|
460
|
-
*/
|
|
461
|
-
_getProp(key: any): any;
|
|
462
|
-
/**
|
|
463
|
-
* @internal
|
|
464
|
-
*/
|
|
465
|
-
_setProp(key: any, val: any, shouldReflect?: boolean, shouldUpdate?: boolean): void;
|
|
466
|
-
_update(): void;
|
|
467
|
-
_createVNode(): any;
|
|
468
|
-
_applyStyles(styles: any, owner: any): void;
|
|
469
|
-
_childStyles: Map<any, any> | undefined;
|
|
470
|
-
_styles: any[] | undefined;
|
|
471
|
-
/**
|
|
472
|
-
* Only called when shadowRoot is false
|
|
473
|
-
*/
|
|
474
|
-
_parseSlots(): void;
|
|
475
|
-
_slots: {} | undefined;
|
|
476
|
-
/**
|
|
477
|
-
* Only called when shadowRoot is false
|
|
478
|
-
*/
|
|
479
|
-
_renderSlots(): void;
|
|
480
|
-
/**
|
|
481
|
-
* @internal
|
|
482
|
-
*/
|
|
483
|
-
_injectChildStyle(comp: any): void;
|
|
484
|
-
/**
|
|
485
|
-
* @internal
|
|
486
|
-
*/
|
|
487
|
-
_removeChildStyle(comp: any): void;
|
|
488
|
-
};
|
|
489
|
-
def: any;
|
|
490
|
-
};
|
|
491
|
-
declare function defineEmits(): null;
|
|
492
|
-
declare function defineExpose(exposed: any): void;
|
|
493
|
-
declare function defineModel(): void;
|
|
494
|
-
declare function defineOptions(options: any): void;
|
|
495
|
-
declare function defineProps(): null;
|
|
496
|
-
/*! #__NO_SIDE_EFFECTS__ */
|
|
497
|
-
declare function defineSSRCustomElement(options: any, extraOptions: any): {
|
|
498
|
-
new (initialProps: any): {
|
|
499
|
-
_def: any;
|
|
500
|
-
_props: {};
|
|
501
|
-
_createApp: (...args: any[]) => any;
|
|
502
|
-
_isVueCE: boolean;
|
|
503
|
-
/**
|
|
504
|
-
* @internal
|
|
505
|
-
*/
|
|
506
|
-
_instance: any;
|
|
507
|
-
/**
|
|
508
|
-
* @internal
|
|
509
|
-
*/
|
|
510
|
-
_app: any;
|
|
511
|
-
/**
|
|
512
|
-
* @internal
|
|
513
|
-
*/
|
|
514
|
-
_nonce: any;
|
|
515
|
-
_connected: boolean;
|
|
516
|
-
_resolved: boolean;
|
|
517
|
-
_numberProps: any;
|
|
518
|
-
_styleChildren: WeakSet<WeakKey>;
|
|
519
|
-
_ob: MutationObserver | null;
|
|
520
|
-
_root: any;
|
|
521
|
-
connectedCallback(): void;
|
|
522
|
-
_parent: any | undefined;
|
|
523
|
-
_pendingResolve: any;
|
|
524
|
-
_setParent(parent?: any | undefined): void;
|
|
525
|
-
disconnectedCallback(): void;
|
|
526
|
-
/**
|
|
527
|
-
* resolve inner component definition (handle possible async component)
|
|
528
|
-
*/
|
|
529
|
-
_resolveDef(): void;
|
|
530
|
-
_mount(def: any): void;
|
|
531
|
-
_resolveProps(def: any): void;
|
|
532
|
-
_setAttr(key: any): void;
|
|
533
|
-
/**
|
|
534
|
-
* @internal
|
|
535
|
-
*/
|
|
536
|
-
_getProp(key: any): any;
|
|
537
|
-
/**
|
|
538
|
-
* @internal
|
|
539
|
-
*/
|
|
540
|
-
_setProp(key: any, val: any, shouldReflect?: boolean, shouldUpdate?: boolean): void;
|
|
541
|
-
_update(): void;
|
|
542
|
-
_createVNode(): any;
|
|
543
|
-
_applyStyles(styles: any, owner: any): void;
|
|
544
|
-
_childStyles: Map<any, any> | undefined;
|
|
545
|
-
_styles: any[] | undefined;
|
|
546
|
-
/**
|
|
547
|
-
* Only called when shadowRoot is false
|
|
548
|
-
*/
|
|
549
|
-
_parseSlots(): void;
|
|
550
|
-
_slots: {} | undefined;
|
|
551
|
-
/**
|
|
552
|
-
* Only called when shadowRoot is false
|
|
553
|
-
*/
|
|
554
|
-
_renderSlots(): void;
|
|
555
|
-
/**
|
|
556
|
-
* @internal
|
|
557
|
-
*/
|
|
558
|
-
_injectChildStyle(comp: any): void;
|
|
559
|
-
/**
|
|
560
|
-
* @internal
|
|
561
|
-
*/
|
|
562
|
-
_removeChildStyle(comp: any): void;
|
|
563
|
-
};
|
|
564
|
-
def: any;
|
|
565
|
-
};
|
|
566
|
-
declare function defineSlots(): null;
|
|
567
|
-
declare const devtools: undefined;
|
|
568
|
-
declare function effect(fn: any, options: any): () => any;
|
|
569
|
-
declare function effectScope(detached: any): EffectScope;
|
|
570
|
-
declare function getCurrentInstance(): any;
|
|
571
|
-
declare function getCurrentScope(): any;
|
|
572
|
-
declare function getCurrentWatcher(): undefined;
|
|
573
|
-
declare function getTransitionRawChildren(children: any, keepComment: boolean | undefined, parentKey: any): any;
|
|
574
|
-
declare function guardReactiveProps(props: any): any;
|
|
575
|
-
declare function h(type: any, propsOrChildren: any, children: any, ...args: any[]): any;
|
|
576
|
-
declare function handleError(err: any, instance: any, type: any, throwInDev?: boolean): void;
|
|
577
|
-
declare function hasInjectionContext(): boolean;
|
|
578
|
-
declare function hydrate(...args: any[]): void;
|
|
579
|
-
declare function hydrateOnIdle(timeout?: number): (hydrate: any) => () => any;
|
|
580
|
-
declare function hydrateOnInteraction(interactions?: any[]): (hydrate: any, forEach: any) => () => void;
|
|
581
|
-
declare function hydrateOnMediaQuery(query: any): (hydrate: any) => (() => void) | undefined;
|
|
582
|
-
declare function hydrateOnVisible(opts: any): (hydrate: any, forEach: any) => () => void;
|
|
583
|
-
declare function initCustomFormatter(): void;
|
|
584
|
-
declare function initDirectivesForSSR(): void;
|
|
585
|
-
declare function inject(key: any, defaultValue: any, treatDefaultAsFactory?: boolean, ...args: any[]): any;
|
|
586
|
-
declare function isMemoSame(cached: any, memo: any): boolean;
|
|
587
|
-
declare function isProxy(value: any): boolean;
|
|
588
|
-
declare function isReactive(value: any): boolean;
|
|
589
|
-
declare function isReadonly(value: any): boolean;
|
|
590
|
-
declare function isRef(r: any): boolean;
|
|
591
|
-
declare function isRuntimeOnly(): boolean;
|
|
592
|
-
declare function isShallow(value: any): boolean;
|
|
593
|
-
declare function isVNode(value: any): boolean;
|
|
594
|
-
declare function markRaw(value: any): any;
|
|
595
|
-
declare function mergeDefaults(raw: any, defaults: any): any;
|
|
596
|
-
declare function mergeModels(a: any, b: any): any;
|
|
597
|
-
declare function mergeProps(...args: any[]): {
|
|
598
|
-
class: any;
|
|
599
|
-
style: any;
|
|
600
|
-
};
|
|
601
|
-
declare function nextTick(fn: any): any;
|
|
602
|
-
declare function normalizeClass(value: any): string;
|
|
603
|
-
declare function normalizeProps(props: any): any;
|
|
604
|
-
declare function normalizeStyle(value: any): any;
|
|
605
|
-
declare function onActivated(hook: any, target: any): void;
|
|
606
|
-
declare function onBeforeMount(hook: any, target?: any): void;
|
|
607
|
-
declare function onBeforeUnmount(hook: any, target?: any): void;
|
|
608
|
-
declare function onBeforeUpdate(hook: any, target?: any): void;
|
|
609
|
-
declare function onDeactivated(hook: any, target: any): void;
|
|
610
|
-
declare function onErrorCaptured(hook: any, target?: any): void;
|
|
611
|
-
declare function onMounted(hook: any, target?: any): void;
|
|
612
|
-
declare function onRenderTracked(hook: any, target?: any): void;
|
|
613
|
-
declare function onRenderTriggered(hook: any, target?: any): void;
|
|
614
|
-
declare function onScopeDispose(fn: any, failSilently?: boolean): void;
|
|
615
|
-
declare function onServerPrefetch(hook: any, target?: any): void;
|
|
616
|
-
declare function onUnmounted(hook: any, target?: any): void;
|
|
617
|
-
declare function onUpdated(hook: any, target?: any): void;
|
|
618
|
-
declare function onWatcherCleanup(cleanupFn: any, failSilently?: boolean, owner?: undefined): void;
|
|
619
|
-
declare function openBlock(disableTracking?: boolean): void;
|
|
620
|
-
declare function popScopeId(): void;
|
|
621
|
-
declare function provide(key: any, value: any): void;
|
|
622
|
-
declare function proxyRefs(objectWithRefs: any): any;
|
|
623
|
-
declare function pushScopeId(id: any): void;
|
|
624
|
-
declare function queuePostFlushCb(cb: any): void;
|
|
625
|
-
declare function reactive(target: any): any;
|
|
626
|
-
declare function readonly(target: any): any;
|
|
627
|
-
declare function ref(value: any): any;
|
|
628
|
-
declare function registerRuntimeCompiler(_compile: any): void;
|
|
629
|
-
declare function render(...args: any[]): void;
|
|
630
|
-
declare function renderList(source: any, renderItem: any, cache: any, index: any): any[];
|
|
631
|
-
declare function renderSlot(slots: any, name: any, props: {} | undefined, fallback: any, noSlotted: any): any;
|
|
632
|
-
declare function resolveComponent(name: any, maybeSelfReference: any): any;
|
|
633
|
-
declare function resolveDirective(name: any): any;
|
|
634
|
-
declare function resolveDynamicComponent(component: any): any;
|
|
635
|
-
declare const resolveFilter: null;
|
|
636
|
-
declare function resolveTransitionHooks(vnode: any, props: any, state: any, instance: any, postClone: any): {
|
|
637
|
-
mode: any;
|
|
638
|
-
persisted: any;
|
|
639
|
-
beforeEnter(el: any): void;
|
|
640
|
-
enter(el: any): void;
|
|
641
|
-
leave(el: any, remove: any): any;
|
|
642
|
-
clone(vnode2: any): any;
|
|
643
|
-
};
|
|
644
|
-
declare function setBlockTracking(value: any): void;
|
|
645
|
-
declare function setDevtoolsHook(hook: any, target: any): void;
|
|
646
|
-
declare function setTransitionHooks(vnode: any, hooks: any): void;
|
|
647
|
-
declare function shallowReactive(target: any): any;
|
|
648
|
-
declare function shallowReadonly(target: any): any;
|
|
649
|
-
declare function shallowRef(value: any): any;
|
|
650
|
-
declare const ssrContextKey: unique symbol;
|
|
651
|
-
declare namespace ssrUtils {
|
|
652
|
-
export { createComponentInstance };
|
|
653
|
-
export { setupComponent };
|
|
654
|
-
export { renderComponentRoot };
|
|
655
|
-
export { setCurrentRenderingInstance };
|
|
656
|
-
export { isVNode };
|
|
657
|
-
export { normalizeVNode };
|
|
658
|
-
export { getComponentPublicInstance };
|
|
659
|
-
export { ensureValidVNode };
|
|
660
|
-
export { pushWarningContext };
|
|
661
|
-
export { popWarningContext };
|
|
662
|
-
}
|
|
663
|
-
declare function stop(runner: any): void;
|
|
664
|
-
declare function toDisplayString(val: any): any;
|
|
665
|
-
declare function toHandlerKey(str: any): any;
|
|
666
|
-
declare function toHandlers(obj: any, preserveCaseIfNecessary: any): {};
|
|
667
|
-
declare function toRaw(observed: any): any;
|
|
668
|
-
declare function toRef(source: any, key: any, defaultValue: any, ...args: any[]): any;
|
|
669
|
-
declare function toRefs(object: any): {};
|
|
670
|
-
declare function toValue(source: any): any;
|
|
671
|
-
declare function transformVNodeArgs(transformer: any): void;
|
|
672
|
-
declare function triggerRef(ref2: any): void;
|
|
673
|
-
declare function unref(ref2: any): any;
|
|
674
|
-
declare function useAttrs(): any;
|
|
675
|
-
declare function useCssModule(name?: string): any;
|
|
676
|
-
declare function useCssVars(getter: any): void;
|
|
677
|
-
declare function useHost(caller: any): any;
|
|
678
|
-
declare function useId(): string;
|
|
679
|
-
declare function useModel(props: any, name: any, options?: Readonly<{}>): any;
|
|
680
|
-
declare function useSSRContext(): any;
|
|
681
|
-
declare function useShadowRoot(): any;
|
|
682
|
-
declare function useSlots(): any;
|
|
683
|
-
declare function useTemplateRef(key: any): any;
|
|
684
|
-
declare function useTransitionState(): {
|
|
685
|
-
isMounted: boolean;
|
|
686
|
-
isLeaving: boolean;
|
|
687
|
-
isUnmounting: boolean;
|
|
688
|
-
leavingVNodes: Map<any, any>;
|
|
689
|
-
};
|
|
690
|
-
declare namespace vModelCheckbox {
|
|
691
|
-
export let deep: boolean;
|
|
692
|
-
export function created(el: any, _: any, vnode: any): void;
|
|
693
|
-
export { setChecked as mounted };
|
|
694
|
-
export function beforeUpdate(el: any, binding: any, vnode: any): void;
|
|
695
|
-
}
|
|
696
|
-
declare namespace vModelDynamic {
|
|
697
|
-
function created(el: any, binding: any, vnode: any): void;
|
|
698
|
-
function mounted(el: any, binding: any, vnode: any): void;
|
|
699
|
-
function beforeUpdate(el: any, binding: any, vnode: any, prevVNode: any): void;
|
|
700
|
-
function updated(el: any, binding: any, vnode: any, prevVNode: any): void;
|
|
701
|
-
}
|
|
702
|
-
declare namespace vModelRadio {
|
|
703
|
-
function created(el: any, { value }: {
|
|
704
|
-
value: any;
|
|
705
|
-
}, vnode: any): void;
|
|
706
|
-
function beforeUpdate(el: any, { value, oldValue }: {
|
|
707
|
-
value: any;
|
|
708
|
-
oldValue: any;
|
|
709
|
-
}, vnode: any): void;
|
|
710
|
-
}
|
|
711
|
-
declare namespace vModelSelect {
|
|
712
|
-
let deep_1: boolean;
|
|
713
|
-
export { deep_1 as deep };
|
|
714
|
-
export function created(el: any, { value, modifiers: { number } }: {
|
|
715
|
-
value: any;
|
|
716
|
-
modifiers: {
|
|
717
|
-
number: any;
|
|
718
|
-
};
|
|
719
|
-
}, vnode: any): void;
|
|
720
|
-
export function mounted(el: any, { value }: {
|
|
721
|
-
value: any;
|
|
722
|
-
}): void;
|
|
723
|
-
export function beforeUpdate(el: any, _binding: any, vnode: any): void;
|
|
724
|
-
export function updated(el: any, { value }: {
|
|
725
|
-
value: any;
|
|
726
|
-
}): void;
|
|
727
|
-
}
|
|
728
|
-
declare namespace vModelText {
|
|
729
|
-
function created(el: any, { modifiers: { lazy, trim, number } }: {
|
|
730
|
-
modifiers: {
|
|
731
|
-
lazy: any;
|
|
732
|
-
trim: any;
|
|
733
|
-
number: any;
|
|
734
|
-
};
|
|
735
|
-
}, vnode: any): void;
|
|
736
|
-
function mounted(el: any, { value }: {
|
|
737
|
-
value: any;
|
|
738
|
-
}): void;
|
|
739
|
-
function beforeUpdate(el: any, { value, oldValue, modifiers: { lazy, trim, number } }: {
|
|
740
|
-
value: any;
|
|
741
|
-
oldValue: any;
|
|
742
|
-
modifiers: {
|
|
743
|
-
lazy: any;
|
|
744
|
-
trim: any;
|
|
745
|
-
number: any;
|
|
746
|
-
};
|
|
747
|
-
}, vnode: any): void;
|
|
748
|
-
}
|
|
749
|
-
declare namespace vShow {
|
|
750
|
-
function beforeMount(el: any, { value }: {
|
|
751
|
-
value: any;
|
|
752
|
-
}, { transition }: {
|
|
753
|
-
transition: any;
|
|
754
|
-
}): void;
|
|
755
|
-
function mounted(el: any, { value }: {
|
|
756
|
-
value: any;
|
|
757
|
-
}, { transition }: {
|
|
758
|
-
transition: any;
|
|
759
|
-
}): void;
|
|
760
|
-
function updated(el: any, { value, oldValue }: {
|
|
761
|
-
value: any;
|
|
762
|
-
oldValue: any;
|
|
763
|
-
}, { transition }: {
|
|
764
|
-
transition: any;
|
|
765
|
-
}): void;
|
|
766
|
-
function beforeUnmount(el: any, { value }: {
|
|
767
|
-
value: any;
|
|
768
|
-
}): void;
|
|
769
|
-
}
|
|
770
|
-
declare const version: "3.5.12";
|
|
771
|
-
declare function warn(msg: any, ...args: any[]): void;
|
|
772
|
-
declare function watch(source: any, cb: any, options: any): {
|
|
773
|
-
(): void;
|
|
774
|
-
stop: () => void;
|
|
775
|
-
resume: () => void;
|
|
776
|
-
pause: () => void;
|
|
777
|
-
};
|
|
778
|
-
declare function watchEffect(effect: any, options: any): {
|
|
779
|
-
(): void;
|
|
780
|
-
stop: () => void;
|
|
781
|
-
resume: () => void;
|
|
782
|
-
pause: () => void;
|
|
783
|
-
};
|
|
784
|
-
declare function watchPostEffect(effect: any, options: any): {
|
|
785
|
-
(): void;
|
|
786
|
-
stop: () => void;
|
|
787
|
-
resume: () => void;
|
|
788
|
-
pause: () => void;
|
|
789
|
-
};
|
|
790
|
-
declare function watchSyncEffect(effect: any, options: any): {
|
|
791
|
-
(): void;
|
|
792
|
-
stop: () => void;
|
|
793
|
-
resume: () => void;
|
|
794
|
-
pause: () => void;
|
|
795
|
-
};
|
|
796
|
-
declare function withAsyncContext(getAwaitable: any): any[];
|
|
797
|
-
declare function withCtx(fn: any, ctx: any, isNonScopedSlot: any): any;
|
|
798
|
-
declare function withDefaults(props: any, defaults: any): null;
|
|
799
|
-
declare function withDirectives(vnode: any, directives: any): any;
|
|
800
|
-
declare function withKeys(fn: any, modifiers: any): any;
|
|
801
|
-
declare function withMemo(memo: any, render: any, cache: any, index: any): any;
|
|
802
|
-
declare function withModifiers(fn: any, modifiers: any): any;
|
|
803
|
-
declare function withScopeId(_id: any): typeof withCtx;
|
|
804
|
-
declare const TransitionHookValidator: (FunctionConstructor | ArrayConstructor)[];
|
|
805
|
-
declare function hydrateSuspense(node: any, vnode: any, parentComponent: any, parentSuspense: any, namespace: any, slotScopeIds: any, optimized: any, rendererInternals: any, hydrateNode: any): any;
|
|
806
|
-
declare function normalizeSuspenseChildren(vnode: any): void;
|
|
807
|
-
declare function moveTeleport(vnode: any, container: any, parentAnchor: any, { o: { insert }, m: move }: {
|
|
808
|
-
o: {
|
|
809
|
-
insert: any;
|
|
810
|
-
};
|
|
811
|
-
m: any;
|
|
812
|
-
}, moveType?: number): void;
|
|
813
|
-
declare function hydrateTeleport(node: any, vnode: any, parentComponent: any, parentSuspense: any, slotScopeIds: any, optimized: any, { o: { nextSibling, parentNode, querySelector, insert, createText } }: {
|
|
814
|
-
o: {
|
|
815
|
-
nextSibling: any;
|
|
816
|
-
parentNode: any;
|
|
817
|
-
querySelector: any;
|
|
818
|
-
insert: any;
|
|
819
|
-
createText: any;
|
|
820
|
-
};
|
|
821
|
-
}, hydrateChildren: any): any;
|
|
822
|
-
declare class ComputedRefImpl {
|
|
823
|
-
constructor(fn: any, setter: any, isSSR: any);
|
|
824
|
-
fn: any;
|
|
825
|
-
setter: any;
|
|
826
|
-
/**
|
|
827
|
-
* @internal
|
|
828
|
-
*/
|
|
829
|
-
dep: Dep;
|
|
830
|
-
/**
|
|
831
|
-
* @internal
|
|
832
|
-
*/
|
|
833
|
-
__v_isRef: boolean;
|
|
834
|
-
/**
|
|
835
|
-
* @internal
|
|
836
|
-
*/
|
|
837
|
-
flags: number;
|
|
838
|
-
/**
|
|
839
|
-
* @internal
|
|
840
|
-
*/
|
|
841
|
-
globalVersion: number;
|
|
842
|
-
effect: this;
|
|
843
|
-
__v_isReadonly: boolean;
|
|
844
|
-
isSSR: any;
|
|
845
|
-
/**
|
|
846
|
-
* @internal
|
|
847
|
-
*/
|
|
848
|
-
notify(): true | undefined;
|
|
849
|
-
set value(newValue: any);
|
|
850
|
-
get value(): any;
|
|
851
|
-
}
|
|
852
|
-
declare class CustomRefImpl {
|
|
853
|
-
constructor(factory: any);
|
|
854
|
-
__v_isRef: boolean;
|
|
855
|
-
dep: Dep;
|
|
856
|
-
_get: any;
|
|
857
|
-
_set: any;
|
|
858
|
-
set value(newVal: any);
|
|
859
|
-
get value(): any;
|
|
860
|
-
_value: any;
|
|
861
|
-
}
|
|
862
|
-
declare function createComponentInstance(vnode: any, parent: any, suspense: any): {
|
|
863
|
-
uid: number;
|
|
864
|
-
vnode: any;
|
|
865
|
-
type: any;
|
|
866
|
-
parent: any;
|
|
867
|
-
appContext: any;
|
|
868
|
-
root: null;
|
|
869
|
-
next: null;
|
|
870
|
-
subTree: null;
|
|
871
|
-
effect: null;
|
|
872
|
-
update: null;
|
|
873
|
-
job: null;
|
|
874
|
-
scope: EffectScope;
|
|
875
|
-
render: null;
|
|
876
|
-
proxy: null;
|
|
877
|
-
exposed: null;
|
|
878
|
-
exposeProxy: null;
|
|
879
|
-
withProxy: null;
|
|
880
|
-
provides: any;
|
|
881
|
-
ids: any;
|
|
882
|
-
accessCache: null;
|
|
883
|
-
renderCache: never[];
|
|
884
|
-
components: null;
|
|
885
|
-
directives: null;
|
|
886
|
-
propsOptions: any;
|
|
887
|
-
emitsOptions: any;
|
|
888
|
-
emit: null;
|
|
889
|
-
emitted: null;
|
|
890
|
-
propsDefaults: Readonly<{}>;
|
|
891
|
-
inheritAttrs: any;
|
|
892
|
-
ctx: Readonly<{}>;
|
|
893
|
-
data: Readonly<{}>;
|
|
894
|
-
props: Readonly<{}>;
|
|
895
|
-
attrs: Readonly<{}>;
|
|
896
|
-
slots: Readonly<{}>;
|
|
897
|
-
refs: Readonly<{}>;
|
|
898
|
-
setupState: Readonly<{}>;
|
|
899
|
-
setupContext: null;
|
|
900
|
-
suspense: any;
|
|
901
|
-
suspenseId: any;
|
|
902
|
-
asyncDep: null;
|
|
903
|
-
asyncResolved: boolean;
|
|
904
|
-
isMounted: boolean;
|
|
905
|
-
isUnmounted: boolean;
|
|
906
|
-
isDeactivated: boolean;
|
|
907
|
-
bc: null;
|
|
908
|
-
c: null;
|
|
909
|
-
bm: null;
|
|
910
|
-
m: null;
|
|
911
|
-
bu: null;
|
|
912
|
-
u: null;
|
|
913
|
-
um: null;
|
|
914
|
-
bum: null;
|
|
915
|
-
da: null;
|
|
916
|
-
a: null;
|
|
917
|
-
rtg: null;
|
|
918
|
-
rtc: null;
|
|
919
|
-
ec: null;
|
|
920
|
-
sp: null;
|
|
921
|
-
};
|
|
922
|
-
declare function setupComponent(instance: any, isSSR?: boolean, optimized?: boolean): any;
|
|
923
|
-
declare function renderComponentRoot(instance: any): any;
|
|
924
|
-
declare function setCurrentRenderingInstance(instance: any): any;
|
|
925
|
-
declare function normalizeVNode(child: any): any;
|
|
926
|
-
declare function getComponentPublicInstance(instance: any): any;
|
|
927
|
-
declare function ensureValidVNode(vnodes: any): any;
|
|
928
|
-
declare function pushWarningContext(vnode: any): void;
|
|
929
|
-
declare function popWarningContext(): void;
|
|
930
|
-
declare function setChecked(el: any, { value, oldValue }: {
|
|
931
|
-
value: any;
|
|
932
|
-
oldValue: any;
|
|
933
|
-
}, vnode: any): void;
|
|
934
|
-
declare class Dep {
|
|
935
|
-
constructor(computed: any);
|
|
936
|
-
computed: any;
|
|
937
|
-
version: number;
|
|
938
|
-
/**
|
|
939
|
-
* Subscriber counter
|
|
940
|
-
*/
|
|
941
|
-
sc: number;
|
|
942
|
-
track(debugInfo: any): Link | undefined;
|
|
943
|
-
activeLink: Link | undefined;
|
|
944
|
-
trigger(debugInfo: any): void;
|
|
945
|
-
notify(debugInfo: any): void;
|
|
946
|
-
}
|
|
947
|
-
declare class Link {
|
|
948
|
-
constructor(sub: any, dep: any);
|
|
949
|
-
sub: any;
|
|
950
|
-
dep: any;
|
|
951
|
-
version: any;
|
|
952
|
-
}
|
|
953
|
-
|
|
954
|
-
export { BaseTransition, BaseTransitionPropsValidators, Comment, DeprecationTypes, EffectScope, ErrorCodes, ErrorTypeStrings, Fragment, KeepAlive, ReactiveEffect, Static, Suspense, Teleport, Text, TrackOpTypes, Transition, TransitionGroup, TriggerOpTypes, VueElement, assertNumber, callWithAsyncErrorHandling, callWithErrorHandling, camelize, capitalize, cloneVNode, compatUtils, compileToFunction as compile, computed, createApp, createBlock, createCommentVNode, createElementBlock, createBaseVNode as createElementVNode, createHydrationRenderer, createPropsRestProxy, createRenderer, createSSRApp, createSlots, createStaticVNode, createTextVNode, createVNode, customRef, defineAsyncComponent, defineComponent, defineCustomElement, defineEmits, defineExpose, defineModel, defineOptions, defineProps, defineSSRCustomElement, defineSlots, devtools, effect, effectScope, getCurrentInstance, getCurrentScope, getCurrentWatcher, getTransitionRawChildren, guardReactiveProps, h, handleError, hasInjectionContext, hydrate, hydrateOnIdle, hydrateOnInteraction, hydrateOnMediaQuery, hydrateOnVisible, initCustomFormatter, initDirectivesForSSR, inject, isMemoSame, isProxy, isReactive, isReadonly, isRef, isRuntimeOnly, isShallow, isVNode, markRaw, mergeDefaults, mergeModels, mergeProps, nextTick, normalizeClass, normalizeProps, normalizeStyle, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onScopeDispose, onServerPrefetch, onUnmounted, onUpdated, onWatcherCleanup, openBlock, popScopeId, provide, proxyRefs, pushScopeId, queuePostFlushCb, reactive, readonly, ref, registerRuntimeCompiler, render, renderList, renderSlot, resolveComponent, resolveDirective, resolveDynamicComponent, resolveFilter, resolveTransitionHooks, setBlockTracking, setDevtoolsHook, setTransitionHooks, shallowReactive, shallowReadonly, shallowRef, ssrContextKey, ssrUtils, stop, toDisplayString, toHandlerKey, toHandlers, toRaw, toRef, toRefs, toValue, transformVNodeArgs, triggerRef, unref, useAttrs, useCssModule, useCssVars, useHost, useId, useModel, useSSRContext, useShadowRoot, useSlots, useTemplateRef, useTransitionState, vModelCheckbox, vModelDynamic, vModelRadio, vModelSelect, vModelText, vShow, version, warn, watch, watchEffect, watchPostEffect, watchSyncEffect, withAsyncContext, withCtx, withDefaults, withDirectives, withKeys, withMemo, withModifiers, withScopeId };
|