1
- // Vitest Snapshot v1
1
+ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2
2
3
3
exports [` Vue 3 > basic 1` ] = `
4
4
"import { createVNode as _createVNode } from \\ "vue\\ ";
5
-
6
5
_createVNode(\\ "div\\ ", null, null);"
7
6
` ;
8
7
9
8
exports [` Vue 3 > basic 2` ] = `
10
9
"import { createVNode as _createVNode } from \\ "vue\\ ";
11
-
12
10
_createVNode(\\ "div\\ ", {
13
11
\\" key\\ " : \\" 1\\ "
14
12
} , null);"
15
13
` ;
16
14
17
15
exports [` Vue 3 > basic 3` ] = `
18
16
"import { createVNode as _createVNode } from \\ "vue\\ ";
19
-
20
17
_createVNode(\\ "div\\ ", {
21
18
\\" foo\\ " : ' bar'
22
19
} , null);"
23
20
` ;
24
21
25
22
exports [` Vue 3 > custom options 1` ] = `
26
23
"import { createVNode as _createVNode } from \\ "vue\\ ";
27
-
28
24
_createVNode(\\ "input\\ ", {
29
25
\\" on\\ " : {
30
26
click: a
@@ -35,14 +31,12 @@ _createVNode(\\"input\\", {
35
31
exports [` Vue 3 > custom options 2` ] = `
36
32
"import _transformOn from \\ "@vue/babel-helper-vue-transform-on\\ ";
37
33
import { createVNode as _createVNode } from \\ "vue\\ ";
38
-
39
34
_createVNode(\\ "input\\ ", _transformOn({
40
35
click : a
41
36
} ), null);"
42
37
` ;
43
38
44
39
exports [` Vue 3 > typescript 1` ] = `
45
40
"import { createVNode as _createVNode } from \\ "vue\\ ";
46
-
47
41
const foo: any = _createVNode(\\ "div\\ ", null, null);"
48
42
` ;
0 commit comments