2019-05-26 15:19:44 +08:00
|
|
|
export {
|
|
|
|
VNode,
|
|
|
|
openBlock,
|
|
|
|
createBlock,
|
|
|
|
createVNode,
|
2019-06-01 02:14:49 +08:00
|
|
|
Text,
|
|
|
|
Empty,
|
2019-05-26 15:19:44 +08:00
|
|
|
Fragment,
|
2019-05-29 16:10:25 +08:00
|
|
|
Portal
|
2019-05-28 10:28:25 +08:00
|
|
|
} from './vnode'
|
2019-05-28 18:06:00 +08:00
|
|
|
|
2019-06-03 13:57:19 +08:00
|
|
|
export { nextTick } from './scheduler'
|
2019-06-02 22:22:44 +08:00
|
|
|
export { createComponent, FunctionalComponent } from './component'
|
|
|
|
export { createRenderer, RendererOptions } from './createRenderer'
|
2019-05-31 18:07:43 +08:00
|
|
|
export { Slot, Slots } from './componentSlots'
|
2019-06-01 00:47:05 +08:00
|
|
|
export { PropType, ComponentPropsOptions } from './componentProps'
|
2019-05-28 19:36:15 +08:00
|
|
|
|
2019-06-07 14:55:38 +08:00
|
|
|
export * from './apiState'
|
|
|
|
export * from './apiWatch'
|
|
|
|
export * from './apiLifecycle'
|
2019-06-19 17:31:49 +08:00
|
|
|
export * from './apiInject'
|
2019-06-02 22:22:44 +08:00
|
|
|
export * from './patchFlags'
|
|
|
|
export * from './typeFlags'
|