Files
mixtape/zero.Web.UI/App/editor/fields/modules.vue
T

23 lines
429 B
Vue
Raw Normal View History

2020-08-18 15:12:35 +02:00
<template>
2020-10-20 16:00:55 +02:00
<ui-modules :value="value" @input="$emit('input', $event)" :config="config" :tags="tags" :disabled="disabled" />
2020-08-18 15:12:35 +02:00
</template>
<script>
export default {
props: {
2020-08-19 12:53:18 +02:00
value: {
type: [String, Object, Array]
},
2020-09-17 11:26:23 +02:00
disabled: {
type: Boolean,
default: false
},
2020-10-20 16:00:55 +02:00
tags: {
type: Array,
default: () => []
},
2020-08-18 15:12:35 +02:00
config: Object
}
}
2020-08-19 12:53:18 +02:00
</script>