Skip to content

Commit c3fd577

Browse files
committed
chore: fix snapshot
1 parent 4f703d1 commit c3fd577

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

packages/compiler-sfc/__tests__/compileScript/__snapshots__/importUsageCheck.spec.ts.snap

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,21 @@ return { get FooBaz() { return FooBaz }, get Last() { return Last } }
124124
})"
125125
`;
126126

127+
exports[`namespace / dot component usage 1`] = `
128+
"import { defineComponent as _defineComponent } from 'vue'
129+
import * as Foo from './foo'
130+
131+
export default /*#__PURE__*/_defineComponent({
132+
setup(__props, { expose: __expose }) {
133+
__expose();
134+
135+
136+
return { get Foo() { return Foo } }
137+
}
138+
139+
})"
140+
`;
141+
127142
exports[`property access (whitespace) 1`] = `
128143
"import { defineComponent as _defineComponent } from 'vue'
129144
import { Foo, Bar, Baz } from './foo'

0 commit comments

Comments
 (0)