vue3-yuanma/packages/runtime-core/src/index.ts

28 lines
606 B
TypeScript
Raw Normal View History

export {
VNode,
openBlock,
createBlock,
createVNode,
2019-06-01 02:14:49 +08:00
Text,
Empty,
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 { nextTick } from './scheduler'
2019-06-20 15:25:10 +08:00
export {
createComponent,
getCurrentInstance,
FunctionalComponent
} from './component'
2019-06-02 22:22:44 +08:00
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-08-20 21:38:00 +08:00
export * from './apiReactivity'
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'