Nuxt/test/fixtures/basic/other-components-folder/named-export.ts

4 lines
130 B
TypeScript
Raw Normal View History

export const namedExport = defineComponent({
setup: () => () => h('div', 'This is a custom component with a named export.'),
})