2017-10-07 02:45:14 +08:00
|
|
|
import { Vue } from "./vue";
|
2019-04-25 11:18:07 +08:00
|
|
|
import "./umd";
|
2016-09-08 16:26:01 +08:00
|
|
|
|
2017-10-07 02:45:14 +08:00
|
|
|
export default Vue;
|
2016-10-09 02:15:36 +08:00
|
|
|
|
2017-10-07 02:45:14 +08:00
|
|
|
export {
|
2017-11-07 05:34:22 +08:00
|
|
|
CreateElement,
|
|
|
|
VueConstructor
|
2017-10-07 02:45:14 +08:00
|
|
|
} from "./vue";
|
2016-09-08 16:26:01 +08:00
|
|
|
|
2017-10-07 02:45:14 +08:00
|
|
|
export {
|
|
|
|
Component,
|
|
|
|
AsyncComponent,
|
|
|
|
ComponentOptions,
|
|
|
|
FunctionalComponentOptions,
|
|
|
|
RenderContext,
|
2018-12-06 06:50:13 +08:00
|
|
|
PropType,
|
2017-10-07 02:45:14 +08:00
|
|
|
PropOptions,
|
|
|
|
ComputedOptions,
|
|
|
|
WatchHandler,
|
|
|
|
WatchOptions,
|
|
|
|
WatchOptionsWithHandler,
|
|
|
|
DirectiveFunction,
|
|
|
|
DirectiveOptions
|
|
|
|
} from "./options";
|
2016-09-08 16:26:01 +08:00
|
|
|
|
2017-10-07 02:45:14 +08:00
|
|
|
export {
|
|
|
|
PluginFunction,
|
|
|
|
PluginObject
|
|
|
|
} from "./plugin";
|
2016-09-08 16:26:01 +08:00
|
|
|
|
2017-10-07 02:45:14 +08:00
|
|
|
export {
|
|
|
|
VNodeChildren,
|
|
|
|
VNodeChildrenArrayContents,
|
|
|
|
VNode,
|
|
|
|
VNodeComponentOptions,
|
|
|
|
VNodeData,
|
|
|
|
VNodeDirective
|
|
|
|
} from "./vnode";
|