You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
572 B
37 lines
572 B
import { Vue } from "./vue";
|
|
|
|
export default 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";
|
|
|