mirror of https://github.com/vuejs/core.git
chore: fix snapshot
This commit is contained in:
parent
4f703d120d
commit
c3fd577177
|
@ -124,6 +124,21 @@ return { get FooBaz() { return FooBaz }, get Last() { return Last } }
|
||||||
})"
|
})"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
exports[`namespace / dot component usage 1`] = `
|
||||||
|
"import { defineComponent as _defineComponent } from 'vue'
|
||||||
|
import * as Foo from './foo'
|
||||||
|
|
||||||
|
export default /*#__PURE__*/_defineComponent({
|
||||||
|
setup(__props, { expose: __expose }) {
|
||||||
|
__expose();
|
||||||
|
|
||||||
|
|
||||||
|
return { get Foo() { return Foo } }
|
||||||
|
}
|
||||||
|
|
||||||
|
})"
|
||||||
|
`;
|
||||||
|
|
||||||
exports[`property access (whitespace) 1`] = `
|
exports[`property access (whitespace) 1`] = `
|
||||||
"import { defineComponent as _defineComponent } from 'vue'
|
"import { defineComponent as _defineComponent } from 'vue'
|
||||||
import { Foo, Bar, Baz } from './foo'
|
import { Foo, Bar, Baz } from './foo'
|
||||||
|
|
Loading…
Reference in New Issue