Files
mixtape/zero.Backoffice.UI/app/editor/fields/rte.vue
T
2021-12-09 10:51:10 +01:00

32 lines
595 B
Vue

<template>
<ui-rte :value="value" @input="$emit('input', $event)" :disabled="disabled" v-bind="{ maxLength, placeholder, setup }" />
</template>
<script>
export default {
props: {
value: {
type: String,
default: null
},
disabled: {
type: Boolean,
default: false
},
maxLength: {
type: Number,
default: null
},
placeholder: {
type: String,
default: null
},
setup: {
type: Function,
default: () => { }
},
config: Object
}
}
</script>