mirror of
https://gitee.com/vuejs/vue.git
synced 2024-12-02 03:57:36 +08:00
49385e1efa
Users using Vue from e.g. the CDN might be using the global `.Vue` without importing the module. See https://www.typescriptlang.org/docs/handbook/modules.html for details on the syntax
40 lines
598 B
TypeScript
40 lines
598 B
TypeScript
import { Vue } from "./vue";
|
|
|
|
export default Vue;
|
|
|
|
export as namespace Vue;
|
|
|
|
export {
|
|
CreateElement,
|
|
VueConstructor
|
|
} from "./vue";
|
|
|
|
export {
|
|
Component,
|
|
AsyncComponent,
|
|
ComponentOptions,
|
|
FunctionalComponentOptions,
|
|
RenderContext,
|
|
PropOptions,
|
|
ComputedOptions,
|
|
WatchHandler,
|
|
WatchOptions,
|
|
WatchOptionsWithHandler,
|
|
DirectiveFunction,
|
|
DirectiveOptions
|
|
} from "./options";
|
|
|
|
export {
|
|
PluginFunction,
|
|
PluginObject
|
|
} from "./plugin";
|
|
|
|
export {
|
|
VNodeChildren,
|
|
VNodeChildrenArrayContents,
|
|
VNode,
|
|
VNodeComponentOptions,
|
|
VNodeData,
|
|
VNodeDirective
|
|
} from "./vnode";
|