创建一个editor.vue文件,代码如下
<template>
<div style="border: 1px solid #ccc;">
<Toolbar style="border-bottom: 1px solid #ccc" :editor="editor" :defaultConfig="toolbarConfig" :mode="mode" />
<Editor style="height: 500px; overflow-y: hidden;" v-model="html" :defaultConfig="editorConfig" :mode="mode"
@onCreated="onCreated" />
</div>
</template>
<script>
import Vue from 'vue'
import {
Editor,
Toolbar
} from '@wangeditor/editor-for-vue'
export default Vue.extend({
components: {
Editor,
Toolbar
},
data() {
return {
// imgUrl:'',
// uploadurl:'',
editor: null,
html: '<p>hello</p>&#