mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
38 lines
542 B
Vue
38 lines
542 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>
|