@@ -54,21 +54,21 @@ let __temp, __restore
54
54
exports [` fixtures > ./fixtures/define-expose.tsx 1` ] = `
55
55
"
56
56
import { getCurrentInstance as __MACROS_getCurrentInstance } from "vue";export function Comp(__MACROS_props) {
57
- (__MACROS_getCurrentInstance ().exposed = {
57
+ ; (__MACROS_getCurrentInstance ().exposed = {
58
58
foo: 1 ,
59
59
})
60
60
return <div />
61
61
}
62
62
63
63
export const Comp1 = function (props: any) {
64
- (__MACROS_getCurrentInstance ().exposed = {
64
+ ; (__MACROS_getCurrentInstance ().exposed = {
65
65
foo: props .foo ,
66
66
})
67
67
return <div />
68
68
}
69
69
70
70
export const Comp2 = ({ foo , ... __MACROS_props } : any) => {
71
- (__MACROS_getCurrentInstance ().exposed = {
71
+ ; (__MACROS_getCurrentInstance ().exposed = {
72
72
foo ,
73
73
})
74
74
return <div />
@@ -192,21 +192,21 @@ let __temp, __restore
192
192
exports [` vue/vapor fixtures > ./fixtures/define-expose.tsx 1` ] = `
193
193
"
194
194
import { currentInstance as __MACROS_currentInstance } from "vue";export function Comp(__MACROS_props) {
195
- (__MACROS_currentInstance .exposed = {
195
+ ; (__MACROS_currentInstance .exposed = {
196
196
foo: 1 ,
197
197
})
198
198
return <div />
199
199
}
200
200
201
201
export const Comp1 = function (props: any) {
202
- (__MACROS_currentInstance .exposed = {
202
+ ; (__MACROS_currentInstance .exposed = {
203
203
foo: props .foo ,
204
204
})
205
205
return <div />
206
206
}
207
207
208
208
export const Comp2 = ({ foo , ... __MACROS_props } : any) => {
209
- (__MACROS_currentInstance .exposed = {
209
+ ; (__MACROS_currentInstance .exposed = {
210
210
foo ,
211
211
})
212
212
return <div />
0 commit comments