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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
| <template>
| <div class="tinymce-editor">
| <editor v-model="myValue" :init="init" :disabled="disabled" @onClick="onClick">
| </editor>
| </div>
| </template>
|
| <script>
| import tinymce from 'tinymce/tinymce'
| import Editor from '@tinymce/tinymce-vue'
| import 'tinymce/themes/silver/theme'
| import 'tinymce/plugins/image'
| import 'tinymce/plugins/media'
| import 'tinymce/plugins/table'
| import 'tinymce/plugins/lists'
| import 'tinymce/plugins/contextmenu'
| import 'tinymce/plugins/wordcount'
| import 'tinymce/plugins/colorpicker'
| import 'tinymce/plugins/textcolor'
| export default {
| components: {
| Editor
| },
| props: {
| //传入一个value,使组件支持v-model绑定
| value: {
| type: String,
| default: ''
| },
| disabled: {
| type: Boolean,
| default: false
| },
| plugins: {
| type: [String, Array],
| default:
| // ' anchor autolink autosave code codesample colorpicker colorpicker contextmenu directionality emoticons fullscreen hr image imagetools insertdatetime link lists noneditable pagebreak paste preview print save searchreplace spellchecker tabfocus table template textcolor textpattern visualblocks visualchars wordcount'
| 'lists image media table wordcount '
| },
| toolbar: {
| type: [String, Array],
| default:
| // 'undo redo | searchreplace | bold italic | underline | strikethrough | alignleft aligncenter alignright | outdent indent blockquote removeformat subscript superscript code codesample hr bullist numlist link image charmap preview anchor pagebreak insertdatetime table forecolor backcolor'
| 'undo redo | formatselect | bold italic underline | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | lists image media table | removeformat hr'
| }
| },
| data () {
| return {
| //初始化配置
| init: {
| language_url: "/tinymce/langs/zh_CN.js",
| language: 'zh_CN',
| skin_url: "/tinymce/skins/ui/oxide",
| height: 300,
| plugins: this.plugins,
| toolbar: this.toolbar,
| branding: false,
| menubar: false,
| //此处为图片上传处理函数,这个直接用了base64的图片形式上传图片,
| //如需ajax上传可参考https://www.tiny.cloud/docs/configure/file-image-upload/#images_upload_handler
| images_upload_handler: (blobInfo, success, failure) => {
| const img = 'data:image/jpeg;base64,' + blobInfo.base64()
| success(img)
| },
| resize: false
| },
| myValue: this.value
| }
| },
| mounted () {
| tinymce.init({})
| },
| methods: {
| //添加相关的事件,可用的事件参照文档=> https://github.com/tinymce/tinymce-vue => All available events
| //需要什么事件可以自己增加
| onClick (e) {
| this.$emit('onClick', e, tinymce)
| },
| //可以添加一些自己的自定义事件,如清空内容
| clear () {
| this.myValue = ''
| }
| },
| watch: {
| value (newValue) {
| this.myValue = newValue
| },
| myValue (newValue) {
| this.$emit('input', newValue)
| }
| }
| }
| </script>
| <style scoped>
| </style>
|
|
|