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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
| <template>
| <div :class="prefixCls">
| <div ref="editor" class="editor-wrapper"></div>
| </div>
| </template>
|
| <script>
| import WEditor from 'wangeditor'
|
| export default {
| name: 'WangEditor',
| props: {
| prefixCls: {
| type: String,
| default: 'ant-editor-wang'
| },
| // eslint-disable-next-line
| value: {
| type: String
| }
| },
| data () {
| return {
| editor: null,
| editorContent: null
| }
| },
| watch: {
| value (val) {
| this.editorContent = val
| this.editor.txt.html(val)
| }
| },
| mounted () {
| this.initEditor()
| },
| methods: {
| initEditor () {
| this.editor = new WEditor(this.$refs.editor)
| // this.editor.onchangeTimeout = 200
| this.editor.customConfig.onchange = (html) => {
| this.editorContent = html
| this.$emit('change', this.editorContent)
| }
| this.editor.create()
| }
| }
| }
| </script>
|
| <style lang="less" scoped>
| .ant-editor-wang {
| .editor-wrapper {
| text-align: left;
| }
| }
| </style>
|
|