We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09a96cd commit db7943aCopy full SHA for db7943a
src/parser.ts
@@ -73,13 +73,16 @@ export function useComponentMetaParser (
73
}
74
75
const getStringifiedComponents = () => {
76
- const _components = Object.keys(components).map((key) => ({
77
- ...components[key],
78
- fullPath: undefined,
79
- shortPath: undefined,
80
- export: undefined
81
- }))
82
- return JSON.stringify(_components, null, 2)
+ const _components = Object.keys(components).map((key) => ([
+ key,
+ {
+ ...components[key],
+ fullPath: undefined,
+ shortPath: undefined,
+ export: undefined
83
+ }
84
+ ]))
85
+ return JSON.stringify(Object.fromEntries(_components), null, 2)
86
87
88
const getVirtualModuleContent = () => `export default ${getStringifiedComponents()}`
0 commit comments