Files
DiceCloud/app/imports/ui/library/LibraryNodeForm.vue
2019-06-28 14:48:02 +02:00

17 lines
322 B
Vue

<template lang="html">
<component v-if="type" :is="type" class="library-node-form"/>
</template>
<script>
import propertyFormIndex from '/imports/ui/creature/properties/propertyFormIndex.js';
export default {
props: {
type: String,
},
components: propertyFormIndex,
}
</script>
<style lang="css" scoped>
</style>