2019-05-26 15:19:44 +08:00
|
|
|
export {
|
|
|
|
VNode,
|
|
|
|
openBlock,
|
|
|
|
createBlock,
|
|
|
|
createVNode,
|
|
|
|
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
|
|
|
|
|
|
|
export {
|
|
|
|
ComponentOptions,
|
|
|
|
FunctionalComponent,
|
|
|
|
Slots,
|
|
|
|
Slot,
|
|
|
|
createComponent
|
|
|
|
} from './component'
|
|
|
|
|
2019-05-28 19:36:15 +08:00
|
|
|
export * from './componentLifecycle'
|
|
|
|
|
2019-05-26 15:19:44 +08:00
|
|
|
export { createRenderer, RendererOptions } from './createRenderer'
|
2019-05-25 23:51:20 +08:00
|
|
|
export { TEXT, CLASS, STYLE, PROPS, KEYED, UNKEYED } from './patchFlags'
|
2019-05-29 23:44:59 +08:00
|
|
|
export * from './reactivity'
|