You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return { get x() { return x }, get z() { return z }, get x$y() { return x$y } }
846
846
}
847
847
848
848
})"
@@ -866,7 +866,7 @@ export default {
866
866
867
867
868
868
869
-
return { bar }
869
+
return { get bar() { return bar } }
870
870
}
871
871
872
872
}"
@@ -920,7 +920,7 @@ export default {
920
920
921
921
x()
922
922
923
-
return { x }
923
+
return { get x() { return x } }
924
924
}
925
925
926
926
}"
@@ -954,7 +954,7 @@ export default {
954
954
expose();
955
955
956
956
957
-
return { a, b }
957
+
return { get a() { return a }, get b() { return b } }
958
958
}
959
959
960
960
}"
@@ -1280,7 +1280,7 @@ export default {
1280
1280
function c() {}
1281
1281
class d {}
1282
1282
1283
-
return { get aa() { return aa }, bb, cc, dd, get a() { return a }, b, c, d, xx, x }
1283
+
return { get aa() { return aa }, set aa(v) { aa = v }, bb, cc, dd, get a() { return a }, set a(v) { a = v }, b, c, d, get xx() { return xx }, get x() { return x } }
0 commit comments