23 lines
547 B
TypeScript
23 lines
547 B
TypeScript
export {
|
|
VNode,
|
|
openBlock,
|
|
createBlock,
|
|
createVNode,
|
|
Text,
|
|
Empty,
|
|
Fragment,
|
|
Portal
|
|
} from './vnode'
|
|
|
|
export { nextTick } from './scheduler'
|
|
export { createComponent, FunctionalComponent } from './component'
|
|
export { createRenderer, RendererOptions } from './createRenderer'
|
|
export { Slot, Slots } from './componentSlots'
|
|
export { PropType, ComponentPropsOptions } from './componentProps'
|
|
|
|
export * from './apiState'
|
|
export * from './apiWatch'
|
|
export * from './apiLifecycle'
|
|
export * from './patchFlags'
|
|
export * from './typeFlags'
|