Nuxt/test/fixtures/runtime-compiler/components/Name.ts

16 lines
299 B
TypeScript

export default defineNuxtComponent({
props: ['template', 'name'],
/**
* most of the time, vue compiler need at least a VNode, use h() to render the component
*/
render () {
return h({
props: ['name'],
template: this.template
}, {
name: this.name
})
}
})