Skip to content

Commit

Permalink
chore: fix snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed May 13, 2022
1 parent be6a0bf commit 31c0bb3
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ return { n, x }
exports[`SFC compile <script setup> <script> and <script setup> co-usage script setup first 1`] = `
"export const n = 1
const __default__ = {}
import { x } from './x'

import { x } from './x'

export default /*#__PURE__*/Object.assign(__default__, {
setup(__props, { expose }) {
Expand All @@ -100,7 +101,8 @@ exports[`SFC compile <script setup> <script> and <script setup> co-usage script
const __default__ = {
name: \\"test\\"
}
import { x } from './x'

import { x } from './x'

export default /*#__PURE__*/_defineComponent({
...__default__,
Expand All @@ -121,6 +123,7 @@ exports[`SFC compile <script setup> <script> and <script setup> co-usage script


const __default__ = def

import { x } from './x'

export default /*#__PURE__*/Object.assign(__default__, {
Expand Down Expand Up @@ -1250,7 +1253,8 @@ exports[`SFC compile <script setup> should expose top level declarations 1`] = `
const bb = 2
function cc() {}
class dd {}
import { x } from './x'

import { x } from './x'

export default {
setup(__props, { expose }) {
Expand Down

0 comments on commit 31c0bb3

Please sign in to comment.