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

26 lines
483 B
Vue
Raw Normal View History

2021-12-09 10:51:10 +01:00
<template>
2021-12-21 14:41:50 +01:00
<ui-rte :value="value" @input="$emit('input', $event)" :disabled="config.disabled" v-bind="{ maxLength, placeholder, setup }" />
2021-12-09 10:51:10 +01:00
</template>
<script>
export default {
props: {
2021-12-21 13:58:48 +01:00
value: String,
2021-12-21 14:41:50 +01:00
config: Object,
2021-12-21 13:58:48 +01:00
2021-12-09 10:51:10 +01:00
maxLength: {
type: Number,
default: null
},
placeholder: {
type: String,
default: null
},
setup: {
type: Function,
default: () => { }
2021-12-21 13:58:48 +01:00
}
2021-12-09 10:51:10 +01:00
}
}
</script>