1- // Vitest Snapshot v1
1+ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
22
33exports [` Vue 3 > basic 1` ] = `
44"import { createVNode as _createVNode } from \\ "vue\\ ";
5-
65_createVNode(\\ "div\\ ", null, null);"
76` ;
87
98exports [` Vue 3 > basic 2` ] = `
109"import { createVNode as _createVNode } from \\ "vue\\ ";
11-
1210_createVNode(\\ "div\\ ", {
1311 \\" key\\ " : \\" 1\\ "
1412} , null);"
1513` ;
1614
1715exports [` Vue 3 > basic 3` ] = `
1816"import { createVNode as _createVNode } from \\ "vue\\ ";
19-
2017_createVNode(\\ "div\\ ", {
2118 \\" foo\\ " : ' bar'
2219} , null);"
2320` ;
2421
2522exports [` Vue 3 > custom options 1` ] = `
2623"import { createVNode as _createVNode } from \\ "vue\\ ";
27-
2824_createVNode(\\ "input\\ ", {
2925 \\" on\\ " : {
3026 click: a
@@ -35,14 +31,12 @@ _createVNode(\\"input\\", {
3531exports [` Vue 3 > custom options 2` ] = `
3632"import _transformOn from \\ "@vue/babel-helper-vue-transform-on\\ ";
3733import { createVNode as _createVNode } from \\ "vue\\ ";
38-
3934_createVNode(\\ "input\\ ", _transformOn({
4035 click : a
4136} ), null);"
4237` ;
4338
4439exports [` Vue 3 > typescript 1` ] = `
4540"import { createVNode as _createVNode } from \\ "vue\\ ";
46-
4741const foo: any = _createVNode(\\ "div\\ ", null, null);"
4842` ;
0 commit comments