mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 09:33:54 +00:00
8 lines
181 B
TypeScript
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),
|
|
})
|