2022-05-27 09:26:55 +00:00
|
|
|
import { Vue } from './vue'
|
|
|
|
import './umd'
|
2016-09-08 08:26:01 +00:00
|
|
|
|
2022-05-27 09:26:55 +00:00
|
|
|
export default Vue
|
2016-10-08 18:15:36 +00:00
|
|
|
|
2022-05-27 09:26:55 +00:00
|
|
|
export { CreateElement, VueConstructor } from './vue'
|
2016-09-08 08:26:01 +00:00
|
|
|
|
2017-10-06 18:45:14 +00:00
|
|
|
export {
|
|
|
|
Component,
|
|
|
|
AsyncComponent,
|
|
|
|
ComponentOptions,
|
|
|
|
FunctionalComponentOptions,
|
|
|
|
RenderContext,
|
2018-12-05 22:50:13 +00:00
|
|
|
PropType,
|
2017-10-06 18:45:14 +00:00
|
|
|
PropOptions,
|
|
|
|
ComputedOptions,
|
|
|
|
WatchHandler,
|
|
|
|
WatchOptions,
|
|
|
|
WatchOptionsWithHandler,
|
|
|
|
DirectiveFunction,
|
|
|
|
DirectiveOptions
|
2022-05-27 09:26:55 +00:00
|
|
|
} from './options'
|
2016-09-08 08:26:01 +00:00
|
|
|
|
2022-05-27 09:26:55 +00:00
|
|
|
export { PluginFunction, PluginObject } from './plugin'
|
2016-09-08 08:26:01 +00:00
|
|
|
|
2017-10-06 18:45:14 +00:00
|
|
|
export {
|
|
|
|
VNodeChildren,
|
|
|
|
VNodeChildrenArrayContents,
|
|
|
|
VNode,
|
|
|
|
VNodeComponentOptions,
|
|
|
|
VNodeData,
|
|
|
|
VNodeDirective
|
2022-05-27 09:26:55 +00:00
|
|
|
} from './vnode'
|
|
|
|
|
|
|
|
export { h, getCurrentInstance } from './v3'
|