Files
mixtape/zero.Backoffice.UI/app/editor/fields/modules.vue
T

23 lines
429 B
Vue
Raw Normal View History

2021-12-09 10:51:10 +01:00
<template>
<ui-modules :value="value" @input="$emit('input', $event)" :config="config" :tags="tags" :disabled="disabled" />
</template>
<script>
export default {
props: {
value: {
type: [String, Object, Array]
},
disabled: {
type: Boolean,
default: false
},
tags: {
type: Array,
default: () => []
},
config: Object
}
}
</script>