求介绍一款vue富文本插件

开发项目,原来的富文本使用的是基于jquery的ckeditor.js,现在用vue需要将项目重新翻新,使用的是vue1.0的版本,求介绍一款vue富文本插件,UI风格类似bootstrap

阅读 15.3k
3 个回答

这个不错,挺漂亮的。
https://github.com/PeakTai/vu...

Intro

Vue-html5-editor is an html5 wysiwyg editor for vue,easy and flexible,compatible with Vue.js 1.0+.

screenshot

demo is here

Installation

Npm

npm install vue-html5-editor --save-dev

import and install as global component

var Vue = require("vue")
var editor = require("vue-html5-editor")
Vue.use(editor,options);

browser

<script src="serverpath/vue.js"></script>
<script src="serverpath/vue-html5-editor.js"></script>

Install using global variable VueHtml5Editor

Vue.use(VueHtml5Editor, options)

Usage

template code as follows

<vue-html5-editor :content="content" :height="500"></vue-html5-editor>
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题