1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-03-02 11:42:43 +00:00
Nuxt/test/fixtures/runtime-compiler/components/Name.ts

16 lines
302 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,
})
},
})