mirror of
https://gitee.com/vuejs/vue.git
synced 2024-11-30 02:57:43 +08:00
57910723c6
close #6850
41 lines
610 B
TypeScript
41 lines
610 B
TypeScript
import { Vue } from "./vue";
|
|
|
|
export default Vue;
|
|
|
|
export as namespace 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
|
|
} from "./vnode";
|