1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| <template>
| <Tinymce v-bind="bindProps" @change="onChange" />
| </template>
|
| <script lang="ts">
| import { computed, defineComponent } from 'vue';
|
| import { Tinymce } from '/@/components/Tinymce';
| import { propTypes } from '/@/utils/propTypes';
|
| export default defineComponent({
| name: 'JEditor',
| // 不将 attrs 的属性绑定到 html 标签上
| inheritAttrs: false,
| components: { Tinymce },
| props: {
| value: propTypes.string.def(''),
| disabled: propTypes.bool.def(false),
| },
| emits: ['change', 'update:value'],
| setup(props, { emit, attrs }) {
| // 合并 props 和 attrs
| const bindProps = computed(() => Object.assign({}, props, attrs));
|
| // value change 事件
| function onChange(value) {
| emit('change', value);
| emit('update:value', value);
| }
|
| return {
| bindProps,
| onChange,
| };
| },
| });
| </script>
|
| <style lang="less" scoped></style>
|
|