Skip to content

Commit

Permalink
chore: update snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 authored and IAmSSH committed Apr 29, 2023
1 parent 952961d commit 657f413
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ exports[`SFC compile <script setup> > <script> and <script setup> co-usage > exp
const __default__ = fn();

export default /*#__PURE__*/Object.assign(__default__, {
setup(__props, { expose }) {
expose();
setup(__props, { expose: __expose }) {
__expose();

console.log('foo')

Expand Down Expand Up @@ -776,8 +776,8 @@ exports[`SFC compile <script setup> > defineProps/defineEmits in multi-variable
"export default {
props: ['item'],
emits: ['foo'],
setup(__props, { expose, emit: emits }) {
expose();
setup(__props, { expose: __expose, emit: emits }) {
__expose();

const props = __props;

Expand Down Expand Up @@ -1031,8 +1031,8 @@ exports[`SFC compile <script setup> > imports > should support module string nam
"import { \\"😏\\" as foo } from './foo'

export default {
setup(__props, { expose }) {
expose();
setup(__props, { expose: __expose }) {
__expose();


return { get foo() { return foo } }
Expand Down Expand Up @@ -1332,8 +1332,8 @@ exports[`SFC compile <script setup> > should compile JS syntax 1`] = `
const b = 2

export default {
setup(__props, { expose }) {
expose();
setup(__props, { expose: __expose }) {
__expose();


return { a, b }
Expand Down Expand Up @@ -1556,8 +1556,8 @@ exports[`SFC compile <script setup> > with TypeScript > defineProps w/ TS assert

export default /*#__PURE__*/_defineComponent({
props: ['foo'],
setup(__props, { expose }) {
expose();
setup(__props, { expose: __expose }) {
__expose();



Expand Down

0 comments on commit 657f413

Please sign in to comment.