简介 Intro
Vue-html5-editor是一个Vue的富文本编辑器插件,简洁灵活可扩展,适用于vue2.0以上版本,支持IE11.
Vue-html5-editor is an html5 wysiwyg editor for vue,easy and flexible,compatible with Vue.js 2.0+,support IE11.
安装 Installation
Npm
npm install vue-html5-editor --save-dev
引入并安装作为全局组件
import and install as global component
Vue;
同样你也可以作为局部组件使用,方便在不同的场景里使用不同的配置.
const editor1 = options1const app1 = components: editor1 const editor2 = options2const app2 = components: editor2
浏览器直接使用 browser
通过全局变量VueHtml5Editor
来安装.
Install using global variable VueHtml5Editor
.
Vue
使用说明 Usage
模板代码如下:
template code as follows:
options
Vue
组件属性 attributes
content
编辑内容
The html content to edit
height
编辑器高度,如果设置了auto-height
为true,将设置为编辑器的最小高度.
The height or min-height ( if auto-height is true ) of editor.
z-index
层级,将会设置编辑器容量的z-index
样式属性,默认为1000.
Sets z-index style property of editor,default 1000.
auto-height
是否自动根据内容控制编辑器高度,默认为true.
Resize editor height automatically,default true.
show-module-name
局部设置是否显示模块名称,会覆盖全局的设定.
Set showModuleName
locally.
事件
change
每次内容有变动时触发,回传改变后的内容.
Emited when the content changes,and pass the current content as event data.