1- // Jest Snapshot v1, https://goo.gl/fbAQLP
1+ // Vitest Snapshot v1
22
3- exports [` sfc props transform $$() escape 1` ] = `
3+ exports [` sfc props transform > $$() escape 1` ] = `
44"import { toRef as _toRef } from 'vue'
55
66export default {
@@ -20,8 +20,8 @@ return () => {}
2020} "
2121` ;
2222
23- exports [` sfc props transform aliasing 1` ] = `
24- "import { toDisplayString as _toDisplayString } from "vue"
23+ exports [` sfc props transform > aliasing 1` ] = `
24+ "import { toDisplayString as _toDisplayString } from \\ "vue\\ "
2525
2626
2727export default {
@@ -40,8 +40,8 @@ return (_ctx, _cache) => {
4040} "
4141` ;
4242
43- exports [` sfc props transform basic usage 1` ] = `
44- "import { toDisplayString as _toDisplayString } from "vue"
43+ exports [` sfc props transform > basic usage 1` ] = `
44+ "import { toDisplayString as _toDisplayString } from \\ "vue\\ "
4545
4646
4747export default {
@@ -59,8 +59,8 @@ return (_ctx, _cache) => {
5959} "
6060` ;
6161
62- exports [` sfc props transform computed static key 1` ] = `
63- "import { toDisplayString as _toDisplayString } from "vue"
62+ exports [` sfc props transform > computed static key 1` ] = `
63+ "import { toDisplayString as _toDisplayString } from \\ "vue\\ "
6464
6565
6666export default {
@@ -78,7 +78,7 @@ return (_ctx, _cache) => {
7878} "
7979` ;
8080
81- exports [` sfc props transform default values w/ runtime declaration 1` ] = `
81+ exports [` sfc props transform > default values w/ runtime declaration 1` ] = `
8282"import { mergeDefaults as _mergeDefaults } from 'vue'
8383
8484export default {
@@ -96,7 +96,7 @@ return () => {}
9696} "
9797` ;
9898
99- exports [` sfc props transform default values w/ type declaration 1` ] = `
99+ exports [` sfc props transform > default values w/ type declaration 1` ] = `
100100"import { defineComponent as _defineComponent } from 'vue'
101101
102102export default /*#__PURE__*/_defineComponent({
@@ -114,7 +114,7 @@ return () => {}
114114} )"
115115` ;
116116
117- exports [` sfc props transform default values w/ type declaration, prod mode 1` ] = `
117+ exports [` sfc props transform > default values w/ type declaration, prod mode 1` ] = `
118118"import { defineComponent as _defineComponent } from 'vue'
119119
120120export default /*#__PURE__*/_defineComponent({
@@ -136,8 +136,8 @@ return () => {}
136136} )"
137137` ;
138138
139- exports [` sfc props transform multiple variable declarations 1` ] = `
140- "import { toDisplayString as _toDisplayString , openBlock as _openBlock , createElementBlock as _createElementBlock } from "vue"
139+ exports [` sfc props transform > multiple variable declarations 1` ] = `
140+ "import { toDisplayString as _toDisplayString , openBlock as _openBlock , createElementBlock as _createElementBlock } from \\ "vue\\ "
141141
142142
143143export default {
@@ -147,14 +147,14 @@ export default {
147147 const bar = 'fish', hello = 'world'
148148
149149return (_ctx , _cache ) => {
150- return (_openBlock (), _createElementBlock (" div" , null , _toDisplayString (__props .foo ) + " " + _toDisplayString (hello ) + " " + _toDisplayString (bar ), 1 /* TEXT */ ))
150+ return (_openBlock (), _createElementBlock (\\ " div\\ " , null , _toDisplayString (__props .foo ) + \\ " \\ " + _toDisplayString (hello ) + \\ " \\ " + _toDisplayString (bar ), 1 /* TEXT */ ))
151151}
152152}
153153
154154} "
155155` ;
156156
157- exports [` sfc props transform nested scope 1` ] = `
157+ exports [` sfc props transform > nested scope 1` ] = `
158158"export default {
159159 props : [' foo' , ' bar' ],
160160 setup (__props ) {
@@ -171,33 +171,33 @@ return () => {}
171171} "
172172` ;
173173
174- exports [` sfc props transform non-identifier prop names 1` ] = `
175- "import { toDisplayString as _toDisplayString } from "vue"
174+ exports [` sfc props transform > non-identifier prop names 1` ] = `
175+ "import { toDisplayString as _toDisplayString } from \\ "vue\\ "
176176
177177
178178export default {
179179 props : { ' foo.bar' : Function },
180180 setup (__props ) {
181181
182182
183- let x = __props["foo.bar"]
183+ let x = __props[\\ "foo.bar\\ "]
184184
185185return (_ctx , _cache ) => {
186- return _toDisplayString (__props [" foo.bar" ])
186+ return _toDisplayString (__props [\\ " foo.bar\\ " ])
187187}
188188}
189189
190190} "
191191` ;
192192
193- exports [` sfc props transform rest spread 1` ] = `
193+ exports [` sfc props transform > rest spread 1` ] = `
194194"import { createPropsRestProxy as _createPropsRestProxy } from 'vue'
195195
196196export default {
197197 props : [' foo' , ' bar' , ' baz' ],
198198 setup (__props ) {
199199
200- const rest = _createPropsRestProxy(__props , ["foo ", "bar "]);
200+ const rest = _createPropsRestProxy(__props , [\\ "foo \\",\\ "bar \\ "]);
201201
202202
203203
0 commit comments