nixin-web/components/DynamicComponent.vue

19 lines
277 B
Vue
Raw Normal View History

2024-10-09 11:05:41 +00:00
<template>
<component :is="type"></component>
</template>
<script>
import * as components from './all'
console.log(components)
export default {
components: {
...components
},
props: {
type: { type: String, required: true }
},
}
</script>