@@ -4,7 +4,7 @@ exports[`compiler: transform <slot> outlets > default slot outlet 1`] = `
4
4
"import { createSlot as _createSlot } from 'vue/vapor';
5
5
6
6
export function render(_ctx) {
7
- const n0 = _createSlot (" default" )
7
+ const n0 = _createSlot (" default" , null )
8
8
return n0
9
9
} "
10
10
`;
@@ -14,7 +14,7 @@ exports[`compiler: transform <slot> outlets > default slot outlet with fallback
14
14
const t0 = _template("<div ></div >")
15
15
16
16
export function render(_ctx) {
17
- const n0 = _createSlot (" default" , () => {
17
+ const n0 = _createSlot (" default" , null , () => {
18
18
const n2 = t0 ()
19
19
return n2
20
20
})
@@ -39,7 +39,7 @@ exports[`compiler: transform <slot> outlets > dynamically named slot outlet 1`]
39
39
"import { createSlot as _createSlot } from 'vue/vapor';
40
40
41
41
export function render(_ctx) {
42
- const n0 = _createSlot (() => (_ctx .foo + _ctx .bar ))
42
+ const n0 = _createSlot (() => (_ctx .foo + _ctx .bar ), null )
43
43
return n0
44
44
} "
45
45
`;
@@ -48,7 +48,7 @@ exports[`compiler: transform <slot> outlets > dynamically named slot outlet with
48
48
"import { createSlot as _createSlot } from 'vue/vapor';
49
49
50
50
export function render(_ctx) {
51
- const n0 = _createSlot (() => (_ctx .name ))
51
+ const n0 = _createSlot (() => (_ctx .name ), null )
52
52
return n0
53
53
} "
54
54
`;
@@ -58,7 +58,7 @@ exports[`compiler: transform <slot> outlets > named slot outlet with fallback 1`
58
58
const t0 = _template("<div ></div >")
59
59
60
60
export function render(_ctx) {
61
- const n0 = _createSlot (" foo" , () => {
61
+ const n0 = _createSlot (" foo" , null , () => {
62
62
const n2 = t0 ()
63
63
return n2
64
64
})
@@ -70,7 +70,7 @@ exports[`compiler: transform <slot> outlets > statically named slot outlet 1`] =
70
70
"import { createSlot as _createSlot } from 'vue/vapor';
71
71
72
72
export function render(_ctx) {
73
- const n0 = _createSlot (" foo" )
73
+ const n0 = _createSlot (" foo" , null )
74
74
return n0
75
75
} "
76
76
`;
0 commit comments