UNPKG

610 BTypeScriptView Raw
1import { Vue } from "./vue";
2
3export default Vue;
4
5export as namespace Vue;
6
7export {
8 CreateElement,
9 VueConstructor
10} from "./vue";
11
12export {
13 Component,
14 AsyncComponent,
15 ComponentOptions,
16 FunctionalComponentOptions,
17 RenderContext,
18 PropType,
19 PropOptions,
20 ComputedOptions,
21 WatchHandler,
22 WatchOptions,
23 WatchOptionsWithHandler,
24 DirectiveFunction,
25 DirectiveOptions
26} from "./options";
27
28export {
29 PluginFunction,
30 PluginObject
31} from "./plugin";
32
33export {
34 VNodeChildren,
35 VNodeChildrenArrayContents,
36 VNode,
37 VNodeComponentOptions,
38 VNodeData,
39 VNodeDirective
40} from "./vnode";