test: update snap

This commit is contained in:
daiwei 2023-10-20 17:46:47 +08:00
parent 6f17c77ca5
commit e5609b6c13
1 changed files with 2 additions and 2 deletions

View File

@ -26,11 +26,11 @@ enum Foo { Foo = 'foo', Bar = 'bar', Qux = 'qux' }
export default /*#__PURE__*/_defineComponent({
emits: [\\"foo\\", \\"bar\\"],
setup(__props, { expose: __expose, emit }) {
setup(__props, { expose: __expose, emit: __emit }) {
__expose();
enum Bar { Foo = Foo.Foo }
const emit = __emit
return { Foo, Bar, emit }
}