2022-05-27 17:26:55 +08:00
|
|
|
import { Vue } from './vue'
|
|
|
|
import './umd'
|
2016-09-08 16:26:01 +08:00
|
|
|
|
2022-05-27 17:26:55 +08:00
|
|
|
export default Vue
|
2016-10-09 02:15:36 +08:00
|
|
|
|
2022-05-27 17:26:55 +08:00
|
|
|
export { CreateElement, VueConstructor } 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
|
2022-05-27 17:26:55 +08:00
|
|
|
} from './options'
|
2016-09-08 16:26:01 +08:00
|
|
|
|
2022-05-27 17:26:55 +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
|
2022-05-27 17:26:55 +08:00
|
|
|
} from './vnode'
|
|
|
|
|
|
|
|
export { h, getCurrentInstance } from './v3'
|