Files
DiceCloud/app/imports/ui/components/features/FeatureDialog.vue
2019-04-03 16:50:22 +02:00

32 lines
675 B
Vue

<template lang="html">
<property-dialog :doc="feature" collection="features" @remove="$emit('remove')">
<div>
{{feature.description}}
<!--
<child-lists
:parent="feature"
/>
-->
</div>
<feature-foremovet="form" :feature="feature" @update="(update, ack) => $emit('update', update, ack)"/>
</property-dialog>
</template>
<script>
import PropertyDialog from '/imports/ui/components/properties/PropertyDialog.vue';
import FeatureForm from '/imports/ui/components/features/FeatureForm.vue';
export default {
components: {
PropertyDialog,
FeatureForm,
},
props: {
feature: Object,
},
}
</script>
<style lang="css" scoped>
</style>