Nuxt/test/fixtures/basic/modules/lazy-import-components/runtime/components.ts

8 lines
181 B
TypeScript

import { defineComponent, h } from 'vue'
export const NComp = defineComponent({
name: 'NComp',
props: { message: String },
render: (props: any) => h('h1', props.message),
})