mirror of https://github.com/vuejs/core.git
12 lines
211 B
TypeScript
12 lines
211 B
TypeScript
|
import type { BlockFn, Fragment } from './block'
|
||
|
|
||
|
export function createIf(
|
||
|
condition: () => any,
|
||
|
b1: BlockFn,
|
||
|
b2?: BlockFn,
|
||
|
once?: boolean,
|
||
|
// hydrationNode?: Node,
|
||
|
): Fragment {
|
||
|
return [] as any
|
||
|
}
|