vue推荐一个好用的富文本框

旧街凉风 提交于 2019-12-28 02:03:51

1、安装

npm i summernote

2、创建页面显示区域

<div id="content"></div>

3、加载的时候进行初始化

js中引入

import 'summernote/dist/summernote'
import 'summernote/dist/summernote.css'

使用的时候初始化方法:

$('#content').summernote({
  height: 150, // set editable area's height
  codemirror: { // codemirror options
    theme: 'monokai'
  }
})
$('#content').summernote('code', item.content)

获取文本框内容:

const content = $('#content').summernote('code')

效果如下:

大功告成,大家有问题可以私信我或者直接在下方回复

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!