mirror of
https://github.com/vuejs/vue.git
synced 2024-11-22 04:39:46 +00:00
40 lines
600 B
TypeScript
40 lines
600 B
TypeScript
import { Vue } from "./vue";
|
|
import "./umd";
|
|
|
|
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
|
|
} from "./vnode";
|