@@ -5,7 +5,7 @@ exports[`compiler: element transform > component > do not resolve component from
5
5
6
6
export function render(_ctx) {
7
7
const _component_Example = _resolveComponent (" Example" )
8
- const n0 = _createComponent (_component_Example , null , true )
8
+ const n0 = _createComponent (_component_Example , null , null , null , true )
9
9
return n0
10
10
} "
11
11
` ;
@@ -25,7 +25,7 @@ exports[`compiler: element transform > component > generate single root componen
25
25
"import { createComponent as _createComponent } from 'vue/vapor';
26
26
27
27
export function render(_ctx) {
28
- const n0 = _createComponent (_ctx .Comp , null , true )
28
+ const n0 = _createComponent (_ctx .Comp , null , null , null , true )
29
29
return n0
30
30
} "
31
31
` ;
@@ -35,21 +35,21 @@ exports[`compiler: element transform > component > import + resolve component 1`
35
35
36
36
export function render(_ctx) {
37
37
const _component_Foo = _resolveComponent (" Foo" )
38
- const n0 = _createComponent (_component_Foo , null , true )
38
+ const n0 = _createComponent (_component_Foo , null , null , null , true )
39
39
return n0
40
40
} "
41
41
` ;
42
42
43
43
exports [` compiler: element transform > component > resolve component from setup bindings (inline const) 1` ] = `
44
44
"(() => {
45
- const n0 = _createComponent (Example , null , true )
45
+ const n0 = _createComponent (Example , null , null , null , true )
46
46
return n0
47
47
} )()"
48
48
` ;
49
49
50
50
exports [` compiler: element transform > component > resolve component from setup bindings (inline) 1` ] = `
51
51
"(() => {
52
- const n0 = _createComponent (_unref (Example ), null , true )
52
+ const n0 = _createComponent (_unref (Example ), null , null , null , true )
53
53
return n0
54
54
} )()"
55
55
` ;
@@ -58,14 +58,14 @@ exports[`compiler: element transform > component > resolve component from setup
58
58
"import { createComponent as _createComponent } from 'vue/vapor';
59
59
60
60
export function render(_ctx) {
61
- const n0 = _createComponent (_ctx .Example , null , true )
61
+ const n0 = _createComponent (_ctx .Example , null , null , null , true )
62
62
return n0
63
63
} "
64
64
` ;
65
65
66
66
exports [` compiler: element transform > component > resolve namespaced component from props bindings (inline) 1` ] = `
67
67
"(() => {
68
- const n0 = _createComponent (Foo .Example , null , true )
68
+ const n0 = _createComponent (Foo .Example , null , null , null , true )
69
69
return n0
70
70
} )()"
71
71
` ;
@@ -74,14 +74,14 @@ exports[`compiler: element transform > component > resolve namespaced component
74
74
"import { createComponent as _createComponent } from 'vue/vapor';
75
75
76
76
export function render(_ctx) {
77
- const n0 = _createComponent (_ctx .Foo .Example , null , true )
77
+ const n0 = _createComponent (_ctx .Foo .Example , null , null , null , true )
78
78
return n0
79
79
} "
80
80
` ;
81
81
82
82
exports [` compiler: element transform > component > resolve namespaced component from setup bindings (inline const) 1` ] = `
83
83
"(() => {
84
- const n0 = _createComponent (Foo .Example , null , true )
84
+ const n0 = _createComponent (Foo .Example , null , null , null , true )
85
85
return n0
86
86
} )()"
87
87
` ;
@@ -90,7 +90,7 @@ exports[`compiler: element transform > component > resolve namespaced component
90
90
"import { createComponent as _createComponent } from 'vue/vapor';
91
91
92
92
export function render(_ctx) {
93
- const n0 = _createComponent (_ctx .Foo .Example , null , true )
93
+ const n0 = _createComponent (_ctx .Foo .Example , null , null , null , true )
94
94
return n0
95
95
} "
96
96
` ;
@@ -102,7 +102,7 @@ export function render(_ctx) {
102
102
const _component_Foo = _resolveComponent (" Foo" )
103
103
const n0 = _createComponent (_component_Foo , [
104
104
{ onBar : () => $event => (_ctx .handleBar ($event )) }
105
- ], true )
105
+ ], null , null , true )
106
106
return n0
107
107
} "
108
108
` ;
@@ -117,7 +117,7 @@ export function render(_ctx) {
117
117
id : () => (" foo" ),
118
118
class : () => (" bar" )
119
119
}
120
- ], true )
120
+ ], null , null , true )
121
121
return n0
122
122
} "
123
123
` ;
@@ -129,7 +129,7 @@ export function render(_ctx) {
129
129
const _component_Foo = _resolveComponent (" Foo" )
130
130
const n0 = _createComponent (_component_Foo , [
131
131
() => (_ctx .obj )
132
- ], true )
132
+ ], null , null , true )
133
133
return n0
134
134
} "
135
135
` ;
@@ -142,7 +142,7 @@ export function render(_ctx) {
142
142
const n0 = _createComponent (_component_Foo , [
143
143
{ id : () => (" foo" ) },
144
144
() => (_ctx .obj )
145
- ], true )
145
+ ], null , null , true )
146
146
return n0
147
147
} "
148
148
` ;
@@ -155,7 +155,7 @@ export function render(_ctx) {
155
155
const n0 = _createComponent (_component_Foo , [
156
156
() => (_ctx .obj ),
157
157
{ id : () => (" foo" ) }
158
- ], true )
158
+ ], null , null , true )
159
159
return n0
160
160
} "
161
161
` ;
@@ -169,7 +169,7 @@ export function render(_ctx) {
169
169
{ id : () => (" foo" ) },
170
170
() => (_ctx .obj ),
171
171
{ class : () => (" bar" ) }
172
- ], true )
172
+ ], null , null , true )
173
173
return n0
174
174
} "
175
175
` ;
@@ -181,7 +181,7 @@ export function render(_ctx) {
181
181
const _component_Foo = _resolveComponent (" Foo" )
182
182
const n0 = _createComponent (_component_Foo , [
183
183
() => (_toHandlers (_ctx .obj ))
184
- ], true )
184
+ ], null , null , true )
185
185
return n0
186
186
} "
187
187
` ;
@@ -195,7 +195,7 @@ export function render(_ctx) {
195
195
const n0 = _createComponent (_component_Foo , [
196
196
() => ({ [_toHandlerKey (_ctx .foo - _ctx .bar )]: () => _ctx .bar }),
197
197
() => ({ [_toHandlerKey (_ctx .baz )]: () => _ctx .qux })
198
- ], true )
198
+ ], null , null , true )
199
199
return n0
200
200
} "
201
201
` ;
@@ -208,7 +208,7 @@ export function render(_ctx) {
208
208
const n0 = _createComponent (_component_Foo , [
209
209
() => ({ [_ctx .foo - _ctx .bar ]: _ctx .bar }),
210
210
() => ({ [_ctx .baz ]: _ctx .qux })
211
- ], true )
211
+ ], null , null , true )
212
212
return n0
213
213
} "
214
214
` ;
0 commit comments