wangeditor富文本编辑器

26 篇文章 1 订阅

<template>
	<div id="editor"></div>
</template>

<script>
import Editor from "wangeditor"
	export default {
		data(){
			return {
				myEditor:null,
				serverIP: "http://localhost:3001"
				//设置一个服务器端口
			}
		},
		mounted() {
		    this.myEditor = new Editor("#editor");
		    //创建一个富文本编辑器
		    this.myEditor.config.menus = [
		    //配置菜单,列表中的都是显示的
		      "head",// 标题
		      "bold",// 粗体
		      "fontSize",// 字号
		      "fontName",// 字体
		      "italic", // 斜体
		      "underline",
		      "strikeThrough",
		      "indent",
		      "lineHeight",
		      "foreColor",
		      "backColor",
		      "link",
		      "list",
		      "todo",
		      "justify",
		      "quote",
		      "emoticon",
		      "image",
		      "video",
		      "table",  //表格
		      "code",           //代码
		      "splitLine", //分割线
		      "undo", //撤销
		      "redo", //恢复
		    ];
		    this.myEditor.config.uploadImgServer = `${this.serverIP}/upload/img`;
		    //配置上传图片的地址
		    this.myEditor.config.uploadFileName = "mainPic";
		    //配置图片的名称
		    this.myEditor.config.zIndex = 0;
		    //设置富文本编辑器的层级
		    this.myEditor.create();
		    //将富文本编辑器创建在网页之中
		    this.myEditor.config.uploadImgHooks = {
		    // 图片上传并返回了结果,想要自己把图片插入到编辑器中
		      customInsert: (insertImgFn, result) => {
		      //result是图片的地址
		        insertImgFn(`${this.serverIP}${result.file}`);
		        //将图片插入到富文本编辑器之中
		      },
		    };
		  },
	}
</script>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值