chore: update

This commit is contained in:
daiwei 2025-04-10 15:56:28 +08:00
parent 016596c429
commit d9772db54e
2 changed files with 1 additions and 12 deletions

View File

@ -214,17 +214,6 @@ export class TeleportFragment extends VaporFragment {
}
}
export const VaporTeleport = VaporTeleportImpl as unknown as {
__vapor: true
__isTeleport: true
new (): {
$props: TeleportProps
$slots: {
default(): Block
}
}
}
export function isVaporTeleport(
value: unknown,
): value is typeof VaporTeleportImpl {

View File

@ -3,7 +3,7 @@ export { createVaporApp, createVaporSSRApp } from './apiCreateApp'
export { defineVaporComponent } from './apiDefineComponent'
export { vaporInteropPlugin } from './vdomInterop'
export type { VaporDirective } from './directives/custom'
export { VaporTeleport } from './components/Teleport'
export { VaporTeleportImpl as VaporTeleport } from './components/Teleport'
// compiler-use only
export { insert, prepend, remove } from './block'