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

32 lines
595 B
Vue
Raw Normal View History

2020-04-30 15:35:09 +02:00
<template>
2021-06-21 13:41:48 +02:00
<ui-rte :value="value" @input="$emit('input', $event)" :disabled="disabled" v-bind="{ maxLength, placeholder, setup }" />
2020-04-30 15:35:09 +02:00
</template>
<script>
export default {
props: {
value: {
type: String,
default: null
},
2020-09-17 11:26:23 +02:00
disabled: {
type: Boolean,
default: false
},
2021-06-21 13:41:48 +02:00
maxLength: {
type: Number,
default: null
},
placeholder: {
type: String,
default: null
},
setup: {
type: Function,
default: () => { }
},
config: Object
2020-04-30 15:35:09 +02:00
}
}
</script>