1.4.3 • Published 5 years ago

mteditor-modified v1.4.3

Weekly downloads
-
License
ISC
Repository
-
Last release
5 years ago

写在最前面

此插件是根据git+https://github.com/mengtuo/MTEditor.git 1.2.1版本定制改编而来

改动了: 1:超级链接变蓝 2:取消自动缓存 3:排序按钮的左侧被挡样式问题 4:添加超级链接【取消】和【确定】按钮样式,按钮后清空原输入值

vue富文本编辑器

安装组件

npm install --save mteditor-modified

注册组件

在main.js里配置

import MTEditor from 'mteditor-modified'
Vue.use(MTEditor);

使用方式

第一种使用方式

直接使用会显示所有富文本的所有功能
<mt-editor v-model="message"></mt-editor>
data: {
    message: ''
}

第二种使用方式

可以根据需要,对富文本的功能进行配置

所有功能的配置信息
[
    {"command":"bold","title":"加粗"},
    {"command":"italic","title":"斜体"},
    {"command":"underline","title":"下划线"},
    {"command":"strikethrough","title":"删除线"},
    {"command":"justifyLeft","title":"居左"},
    {"command":"justifyCenter","title":"居中"},
    {"command":"justifyRight","title":"居右"},
    {"command":"justifyFull","title":"两侧"},
    {"command":"InsertUnorderedList","title":"无序列表"},
    {"command":"insertOrderedList","title":"有序列表"},
    {"command":"superscript","title":"上标"},
    {"command":"subscript","title":"下标"},
    {"command":"code","title":"代码"},
    {"command":"removeFormat","title":"清除格式"},
    {"command":"undo","title":"撤销"},
    {"command":"redo","title":"重做"},
    {"command":"image","title:'图片'},
    {"command":"table",title:'表格'},
    {"command":"link",title:'链接'}
]

使用方式

<mt-editor v-model="message" :config="config"></mt-editor>
data: {
    message: '',
    config:[
        {"command":"bold","title":"加粗"},
        {"command":"italic","title":"斜体"},
        {"command":"underline","title":"下划线"},//可以同时传递命令和title
        {"title":"居左"}, //可以单独传递title
        {"command":"InsertUnorderedList"},//可以单独传递命令
        {"command":"table"}
    ] 
}

页面中获取输入文本内容方式:

// NO1
const commitText = this.commitText // 获取内容不全,会丢失部分内容

// NO2
const commitText = document.getElementById('text_area').innerHTML // 推荐使用方式
this.commitText = commitText

图片上传服务器

后台需要返回的数据格式如下:

{
    "message": "上传成功",
    "imgPaths": [
        "/images/图片名称.png"
    ]
}

Keywords

简单的vue富文本编辑器

mteditor-modified

1.4.3

5 years ago

1.4.2

5 years ago

1.4.1

5 years ago

1.4.0

5 years ago

1.3.9

5 years ago

1.3.8

5 years ago

1.3.7

5 years ago

1.3.6

5 years ago

1.3.5

5 years ago

1.3.4

5 years ago

1.3.3

5 years ago

1.3.2

5 years ago

1.3.1

5 years ago

1.3.0

5 years ago

1.2.9

5 years ago

1.2.8

5 years ago

1.2.7

5 years ago

1.2.6

5 years ago

1.2.5

5 years ago

1.2.4

5 years ago

1.2.3

5 years ago

1.2.2

5 years ago

1.2.1

5 years ago