mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
36 lines
525 B
Vue
36 lines
525 B
Vue
|
<template>
|
||
|
<component :is="showIt" :name="name" />
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
export default defineNuxtComponent({
|
||
|
props: {
|
||
|
template: {
|
||
|
required: true,
|
||
|
type: String
|
||
|
},
|
||
|
name: {
|
||
|
type: String,
|
||
|
default: () => '(missing name prop)'
|
||
|
}
|
||
|
},
|
||
|
setup (props) {
|
||
|
const showIt = h({
|
||
|
template: props.template,
|
||
|
props: {
|
||
|
|
||
|
name: {
|
||
|
type: String,
|
||
|
default: () => '(missing name prop)'
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
|
||
|
return {
|
||
|
showIt
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
</script>
|