2
2
3
3
exports [` compiler: hoistStatic transform hoist element with static key 1` ] = `
4
4
"const _Vue = Vue
5
- const { createVNode : _createVNode } = Vue
5
+ const { createVNode : _createVNode } = _Vue
6
6
7
7
const _hoisted_1 = _createVNode(\\ "div\\ ", { key : \\" foo\\ " } )
8
8
@@ -19,7 +19,7 @@ return function render() {
19
19
20
20
exports [` compiler: hoistStatic transform hoist nested static tree 1` ] = `
21
21
"const _Vue = Vue
22
- const { createVNode : _createVNode } = Vue
22
+ const { createVNode : _createVNode } = _Vue
23
23
24
24
const _hoisted_1 = _createVNode(\\ "p\\ ", null, [
25
25
_createVNode(\\ "span\\ "),
@@ -39,7 +39,7 @@ return function render() {
39
39
40
40
exports [` compiler: hoistStatic transform hoist nested static tree with comments 1` ] = `
41
41
"const _Vue = Vue
42
- const { createVNode : _createVNode , createCommentVNode : _createCommentVNode } = Vue
42
+ const { createVNode : _createVNode , createCommentVNode : _createCommentVNode } = _Vue
43
43
44
44
const _hoisted_1 = _createVNode(\\ "div\\ ", null, [
45
45
_createCommentVNode(\\ "comment\\ ")
@@ -58,7 +58,7 @@ return function render() {
58
58
59
59
exports [` compiler: hoistStatic transform hoist siblings with common non-hoistable parent 1` ] = `
60
60
"const _Vue = Vue
61
- const { createVNode : _createVNode } = Vue
61
+ const { createVNode : _createVNode } = _Vue
62
62
63
63
const _hoisted_1 = _createVNode(\\ "span\\ ")
64
64
const _hoisted_2 = _createVNode(\\ "div\\ ")
@@ -77,7 +77,7 @@ return function render() {
77
77
78
78
exports [` compiler: hoistStatic transform hoist simple element 1` ] = `
79
79
"const _Vue = Vue
80
- const { createVNode : _createVNode } = Vue
80
+ const { createVNode : _createVNode } = _Vue
81
81
82
82
const _hoisted_1 = _createVNode(\\ "span\\ ", { class : \\"inline \\" }, \\" hello\\ " )
83
83
@@ -94,7 +94,7 @@ return function render() {
94
94
95
95
exports [` compiler: hoistStatic transform hoist static props for elements with directives 1` ] = `
96
96
"const _Vue = Vue
97
- const { createVNode : _createVNode } = Vue
97
+ const { createVNode : _createVNode } = _Vue
98
98
99
99
const _hoisted_1 = { id : \\" foo\\ " }
100
100
@@ -115,7 +115,7 @@ return function render() {
115
115
116
116
exports [` compiler: hoistStatic transform hoist static props for elements with dynamic text children 1` ] = `
117
117
"const _Vue = Vue
118
- const { createVNode : _createVNode } = Vue
118
+ const { createVNode : _createVNode } = _Vue
119
119
120
120
const _hoisted_1 = { id : \\" foo\\ " }
121
121
@@ -132,7 +132,7 @@ return function render() {
132
132
133
133
exports [` compiler: hoistStatic transform hoist static props for elements with unhoistable children 1` ] = `
134
134
"const _Vue = Vue
135
- const { createVNode : _createVNode } = Vue
135
+ const { createVNode : _createVNode } = _Vue
136
136
137
137
const _hoisted_1 = { id : \\" foo\\ " }
138
138
@@ -153,7 +153,7 @@ return function render() {
153
153
154
154
exports [` compiler: hoistStatic transform prefixIdentifiers hoist class with static object value 1` ] = `
155
155
"const _Vue = Vue
156
- const { createVNode : _createVNode } = Vue
156
+ const { createVNode : _createVNode } = _Vue
157
157
158
158
const _hoisted_1 = { class : { foo: true } }
159
159
@@ -170,7 +170,7 @@ return function render() {
170
170
171
171
exports [` compiler: hoistStatic transform prefixIdentifiers hoist nested static tree with static interpolation 1` ] = `
172
172
"const _Vue = Vue
173
- const { createVNode : _createVNode } = Vue
173
+ const { createVNode : _createVNode } = _Vue
174
174
175
175
const _hoisted_1 = _createVNode(\\ "span\\ ", null, [
176
176
\\ "foo \\ ",
@@ -192,7 +192,7 @@ return function render() {
192
192
193
193
exports [` compiler: hoistStatic transform prefixIdentifiers hoist nested static tree with static prop value 1` ] = `
194
194
"const _Vue = Vue
195
- const { createVNode : _createVNode } = Vue
195
+ const { createVNode : _createVNode } = _Vue
196
196
197
197
const _hoisted_1 = _createVNode(\\ "span\\ ", { foo : 0 } , _toDisplayString(1))
198
198
@@ -348,7 +348,7 @@ return function render() {
348
348
349
349
exports [` compiler: hoistStatic transform should hoist v-for children if static 1` ] = `
350
350
"const _Vue = Vue
351
- const { createVNode : _createVNode } = Vue
351
+ const { createVNode : _createVNode } = _Vue
352
352
353
353
const _hoisted_1 = { id : \\" foo\\ " }
354
354
const _hoisted_2 = _createVNode(\\ "span\\ ")
@@ -370,7 +370,7 @@ return function render() {
370
370
371
371
exports [` compiler: hoistStatic transform should hoist v-if props/children if static 1` ] = `
372
372
"const _Vue = Vue
373
- const { createVNode : _createVNode , createCommentVNode : _createCommentVNode } = Vue
373
+ const { createVNode : _createVNode , createCommentVNode : _createCommentVNode } = _Vue
374
374
375
375
const _hoisted_1 = {
376
376
key : 0 ,
0 commit comments