1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
| import { Vue } from './vue'
| import './umd'
| import './jsx'
| export * from './jsx'
|
| export default Vue
|
| export { CreateElement, VueConstructor } from './vue'
|
| export {
| Component,
| AsyncComponent,
| ComponentOptions,
| FunctionalComponentOptions,
| RenderContext,
| PropType,
| PropOptions,
| ComputedOptions,
| WatchHandler,
| WatchOptions,
| WatchOptionsWithHandler,
| DirectiveFunction,
| DirectiveOptions
| } from './options'
|
| export { PluginFunction, PluginObject } from './plugin'
|
| export {
| VNodeChildren,
| VNodeChildrenArrayContents,
| VNode,
| VNodeComponentOptions,
| VNodeData,
| VNodeDirective,
| ComponentCustomProps
| } from './vnode'
|
| export * from './v3-manual-apis'
| export * from './v3-generated'
| // <script setup> helpers
| export * from './v3-setup-helpers'
|
| export { Data } from './common'
| export { SetupContext } from './v3-setup-context'
| export { defineComponent, DefineComponent } from './v3-define-component'
| export { defineAsyncComponent } from './v3-define-async-component'
| export {
| SetupFunction,
| // v2 already has option with same name and it's for a single computed
| ComputedOptions as ComponentComputedOptions,
| MethodOptions as ComponentMethodOptions,
| ComponentPropsOptions,
| ComponentCustomOptions,
| ComponentOptionsMixin,
| ComponentOptionsWithoutProps,
| ComponentOptionsWithArrayProps,
| ComponentOptionsWithProps,
| ComponentOptionsBase
| } from './v3-component-options'
| export {
| ComponentInstance,
| ComponentPublicInstance,
| CreateComponentPublicInstance,
| ComponentCustomProperties
| } from './v3-component-public-instance'
| export {
| // PropType,
| // PropOptions,
| ExtractPropTypes,
| ExtractDefaultPropTypes
| } from './v3-component-props'
| export {
| DirectiveModifiers,
| DirectiveBinding,
| DirectiveHook,
| ObjectDirective,
| FunctionDirective,
| Directive
| } from './v3-directive'
|
| export * from './built-in-components'
|
|