当前位置: 首页> 游戏> 评测 > 宁波网站设计制作_web网站设计论文_广告网站有哪些_五个成功品牌推广案例

宁波网站设计制作_web网站设计论文_广告网站有哪些_五个成功品牌推广案例

时间:2025/7/11 11:12:43来源:https://blog.csdn.net/T3165919332/article/details/142564005 浏览次数:0次
宁波网站设计制作_web网站设计论文_广告网站有哪些_五个成功品牌推广案例

使用quill-better-table插件,官网GitCode - 全球开发者的开源社区,开源代码托管平台

安装

首先quill-better-table插件,官网有写需要 quills v2.0.0-dev3

我这里使用的是 quills v2.0.0-dev4,自行安装

然后就是安装我们的插件 quill-better-table

npm install quill-better-table

使用

<template><div class="publish-form-container"><!-- TODO: 表单内容 --><div ref="quillEditorRef" class="quill-editor"></div></div></template><script>import Quill from 'quill';import 'quill/dist/quill.snow.css';import QuillBetterTable from 'quill-better-table' // 可编辑的tableimport 'quill-better-table/dist/quill-better-table.css' import ImageResize from 'quill-image-resize' // 图片位置 以及 改变图片大小Quill.register({'modules/better-table': QuillBetterTable,'modules/imageResize': ImageResize,}, true)export default {name: 'PublishForm',data() {return {title: '',type: '',content: '',};},mounted() {this.initQuillEditor();},methods: {initQuillEditor() {const self = this;this.quillEditor = new Quill(this.$refs.quillEditorRef, {modules: {toolbar: {container:[[{ font: ['SimSun', 'SimHei', 'Microsoft-YaHei', 'KaiTi', 'FangSong', 'Arial', 'Times-New-Roman', 'sans-serif'] }],['bold', 'italic', 'underline', 'strike'],['blockquote', 'code-block'],[{ header: 1 }, { header: 2 }],[{ list: 'ordered' }, { list: 'bullet' }],[{ script: 'sub' }, { script: 'super' }],[{ indent: '-1' }, { indent: '+1' }],[{ direction: 'rtl' }],[{ size: ['small', false, 'large', 'huge'] }],[{ header: [1, 2, 3, 4, 5, 6, false] }],[{ color: [] }, { background: [] }],[{ align: [] }],['clean'],['link', 'image'],['table'],],handlers: {'table': function () {this.quill.getModule('better-table').insertTable(3, 3)},},},table: false,'better-table': { // 表格设置operationMenu: {items: { // 鼠标右键菜单设置,如将某一项设置false则右键菜单不会显示 如            insertColumnRight: falseinsertColumnRight: { text: '右边插入一列' },insertColumnLeft: { text: '左边插入一列' },insertRowUp: { text: '上边插入一行' },insertRowDown: { text: '下边插入一行' },mergeCells: { text: '合并单元格' },unmergeCells: { text: '拆分单元格' },deleteColumn: { text: '删除列' },deleteRow: { text: '删除行' },deleteTable: { text: '删除表格' }},background: {color: '#333'},color: {colors: ['green', 'red', 'yellow', 'blue', 'white'],text: '背景颜色:'}}},imageResize: {displayStyles: {backgroundColor: 'black',border: 'none',color: 'white'},modules: ['Resize', 'DisplaySize', 'Toolbar']},keyboard: {bindings: QuillBetterTable.keyboardBindings}},theme: 'snow',});// 监听编辑器内容的变化this.quillEditor.on('text-change', function (delta, oldDelta, source) {self.content = self.quillEditor.root.innerHTML;});},}};</script>

效果

参考:vue项目 quill 富文本支持表格_quill-better-table-CSDN博客

关键字:宁波网站设计制作_web网站设计论文_广告网站有哪些_五个成功品牌推广案例

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: