1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > element ui html编辑器 vue+element-ui 使用富文本编辑器

element ui html编辑器 vue+element-ui 使用富文本编辑器

时间:2019-08-30 22:03:28

相关推荐

element ui html编辑器 vue+element-ui 使用富文本编辑器

npm安装编辑器组件

npm install vue-quill-editor –save

在components文件夹创建ue.vue组件,如下

ue.vue代码如下:

export default {

name: 'UE',

data() {

return {

editor: null

}

},

props: {

defaultMsg: {

type: String

},

config: {

type: Object

}

},

mounted() {

const _this = this;

this.editor = UE.getEditor('editor', this.config); // 初始化UE

this.editor.addListener("ready", function () {

_this.editor.setContent(_this.defaultMsg) // 确保UE加载完成后,放入内容。

});

},

methods: {

getUEContent() { // 获取内容方法

return this.editor.getContent()

}

},

destroyed() {

this.editor.destroy()

}

}

页面代码部分

import {

quillEditor

} from 'vue-quill-editor'

import 'quill/dist/quill.core.css'

import 'quill/dist/quill.snow.css'

import 'quill/dist/quill.bubble.css'

export default {

name: 'FuncFormsEdit',

components: {

quillEditor

},

data() {

return {

content: null,

editorOption: {}

}

}

}

以上就是简单的在vue+element-ui 使用富文本编辑器,效果图如下

接下来,我们可以美化一下编辑器菜单栏。修改页面代码,如下:

Bold

Italic

underline

strike

段落

标题1

标题2

标题3

标题4

标题5

标题6

10px

12px

14px

16px

18px

20px

宋体

黑体

微软雅黑

楷体

仿宋

Arial

import {

Quill,

quillEditor

} from 'vue-quill-editor'

import 'quill/dist/quill.core.css'

import 'quill/dist/quill.snow.css'

import 'quill/dist/quill.bubble.css'

//引入font.css

import '../../../assets/css/font.css'

// 自定义字体大小

let Size = Quill.import('attributors/style/size')

Size.whitelist = ['10px', '12px', '14px', '16px', '18px', '20px']

Quill.register(Size, true)

// 自定义字体类型

var fonts = ['SimSun', 'SimHei', 'Microsoft-YaHei', 'KaiTi', 'FangSong', 'Arial', 'Times-New-Roman', 'sans-serif',

'宋体', '黑体'

]

var Font = Quill.import('formats/font')

Font.whitelist = fonts

Quill.register(Font, true)

export default {

name: 'FuncFormsEdit',

components: {

quillEditor

},

data() {

return {

content: null,

editorOption: {

placeholder: "请输入",

theme: "snow", // or 'bubble'

modules: {

toolbar: {

container: '#toolbar'

}

}

}

}

}

}

在 asset 文件夹下新建font.css 文件,如下图

font.css代码如下:

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=SimSun]::before,

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=SimSun]::before {

content: "宋体";

font-family: "SimSun";

}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=SimHei]::before,

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=SimHei]::before {

content: "黑体";

font-family: "SimHei";

}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Microsoft-YaHei]::before,

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Microsoft-YaHei]::before {

content: "微软雅黑";

font-family: "Microsoft YaHei";

}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=KaiTi]::before,

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=KaiTi]::before {

content: "楷体";

font-family: "KaiTi";

}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=FangSong]::before,

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=FangSong]::before {

content: "仿宋";

font-family: "FangSong";

}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Arial]::before,

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Arial]::before {

content: "Arial";

font-family: "Arial";

}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Times-New-Roman]::before,

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Times-New-Roman]::before {

content: "Times New Roman";

font-family: "Times New Roman";

}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=sans-serif]::before,

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=sans-serif]::before {

content: "sans-serif";

font-family: "sans-serif";

}

.ql-font-SimSun {

font-family: "SimSun";

}

.ql-font-SimHei {

font-family: "SimHei";

}

.ql-font-Microsoft-YaHei {

font-family: "Microsoft YaHei";

}

.ql-font-KaiTi {

font-family: "KaiTi";

}

.ql-font-FangSong {

font-family: "FangSong";

}

.ql-font-Arial {

font-family: "Arial";

}

.ql-font-Times-New-Roman {

font-family: "Times New Roman";

}

.ql-font-sans-serif {

font-family: "sans-serif";

}

设置后的效果如下图

原文件:/TauCrus/article/details/88801941

来源:/seven077/p/11313137.html

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。