### 基本步骤
>[success] 引入 tinymce 安装包
`yarn add tinymce`
>[success] 组件内容
```
<template>
<div class="tiny-container">
<textarea ref="editor"></textarea>
</div>
</template>
<script>
import tinymce from "tinymce";
import 'tinymce/icons/default'
export default {
name: "TinyEditor",
props: {
// 父组件通过:content.sync同步富文本编辑器内容
content: {
type: String,
required: true,
},
// 触发content同步更新的tinymce Editor Events,其他https://www.tiny.cloud/docs/advanced/events/
updateEvent: {
type: String,
default: "beforeaddundo undo redo keyup",
},
// tinymce依赖文件的cdn url
url: {
type: String,
default: "https://cdn.jsdelivr.net/npm/tinymce@~5",
},
// tinymce的init方法的config参数,本组件有默认设置,比如不要toolbar3,可以使用该组件时写上 :config="{toolbar2:''}"
config: {
type: Object,
default() {
return {};
},
},
},
data() {
return {
editor: null,
defaultConfig: {
themes: "modern",
allow_script_urls: true,
remove_script_host: false,
convert_urls: false,
relative_urls: false,
language_url: `${this.url}/langs/zh_CN.js`,
language: "zh_CN",
theme_url: `${this.url}/themes/silver/theme.min.js`,
skin_url: `${this.url}/skins/ui/oxide`,
branding: false,
menubar: false,
fontsize_formats: "12px 13px 14px 15px 16px 18px 20px 24px",
external_plugins: {},
plugins:
"code hr link advlist lists paste table image imagetools media preview autoresize",
contextmenu: "selectall copy paste inserttable",
toolbar1:
"link unlink bold italic forecolor backcolor table alignleft aligncenter alignright alignjustify removeformat imageUpload videoUpload",
setup: (editor) => {
const self = this;
// 自定义工具栏按钮
editor.ui.registry.addButton("imageUpload", {
tooltip: "插入图片",
icon: "image",
onAction: () => {
// 点击触发事件
},
})
}, // 建立实例事件监听,editor为tinytmce实例
autoresize_bottom_margin: 20,
autoresize_max_height: 380,
autoresize_min_height: 250,
autoresize_on_init: true,
autoresize_overflow_padding: 10,
},
};
},
watch: {
config: {
handler(val) {
// 用外部配置覆盖内部默认配置
Object.assign(this.defaultConfig, val);
// ============================================================================
// 如果语言相关为默认英语,则修改默认配置为中文
const zhCN = "zh_CN";
const enUS = "en_US";
// 如果语言没有配置,则默认配置为中文
if (!this.defaultConfig.language) {
this.defaultConfig.language = zhCN;
}
// 如果有配置语言,并且不是"en_US",并且没有配置language_url,则使用本项目的语言包
if (
Object.prototype.toString.call(
this.defaultConfig.language
) === "[object String]" &&
this.defaultConfig.language !== enUS &&
Object.prototype.toString.call(
this.defaultConfig.language_url
) !== "[object String]"
) {
let langCDN = "https://cdn.jsdelivr.net/npm/";
if (/unpkg.com/.test(this.url)) {
langCDN = "https://unpkg.com/";
}
this.defaultConfig.language_url = `${langCDN}@panhezeng/vue-tinymce@latest/src/langs/${this.defaultConfig.language}.min.js`;
}
// 如果语言为中文,并且没有配置字体,则使用内部配置
if (
this.defaultConfig.language === zhCN &&
Object.prototype.toString.call(
this.defaultConfig.font_formats
) !== "[object String]"
) {
this.defaultConfig.font_formats =
'微软雅黑="微软雅黑";幼圆="幼圆";Arial=arial';
}
// 如果配置为默认英语,则删除语言相关配置节点
if (this.defaultConfig.language === enUS) {
delete this.defaultConfig.language;
delete this.defaultConfig.language_url;
}
this.init();
},
immediate: true,
deep: true,
},
content: {
handler: "setContent",
immediate: true,
},
},
beforeDestroy() {
this.destroy();
},
created() {
// 从指定url加载tinymce依赖文件
tinymce.EditorManager.baseURL = this.url;
},
mounted() {
this.$nextTick(function () {
if (!this.editor) {
this.init();
}
});
},
methods: {
// 插入图片至编辑器
insertImage(res, file) {
const src = ""; // 图片存储地址
tinymce.execCommand("mceInsertContent", false, `<img src=${src}>`);
},
init() {
// 编辑器实例初始化
const refEditor = this.$refs.editor;
if (refEditor) {
this.destroy();
this.defaultConfig.target = refEditor;
this.defaultConfig.init_instance_callback = (editor) => {
if (this && this.$refs.editor) {
if (
/^\[object [^F]*Function\]$/.test(
Object.prototype.toString.call(
this.config.init_instance_callback
)
)
) {
this.config.init_instance_callback(editor);
}
this.editor = editor;
this.setContent();
editor.on(
this.updateEvent,
tinymce.util.Delay.debounce(() => {
this.contentChange();
}, 300)
);
}
};
tinymce.init(this.defaultConfig);
}
},
destroy() {
try {
// 销毁
if (this && this.$refs.editor && this.editor) {
tinymce.remove(this.editor);
this.editor.remove();
this.editor.destroy();
this.editor = null;
}
} catch (e) {}
},
setContent() {
this.$nextTick(function () {
// 如果编辑器实例已经为真,并且编辑器内容和父组件传入的内容不一样
if (
this &&
this.$refs.editor &&
this.editor &&
this.editor.getContent() !== this.content
) {
this.editor.setContent(this.content);
}
});
},
contentChange() {
this.$nextTick(function () {
// 同步到父组件
if (this && this.$refs.editor && this.editor) {
const content = this.editor.getContent();
this.$emit("update:content", content);
this.$emit("content-change", content);
}
});
},
},
};
</script>
<style scoped lang="scss">
.tiny-container {
border: 1px solid #c0ccda;
border-radius: 6px;
}
</style>
```
- 介绍
- 快速了解
- 项目简介
- 主要特性
- 技术选型
- 内置功能
- 更新日志
- 环境部署
- 准备工作
- 运行系统
- 部署系统
- 环境变量
- nginx配置
- 项目介绍
- 文件结构
- 核心技术
- 技术文档
- 多语言环境配置
- 如何在vue项目中整合tinymce富文本编辑器
- vuedraggable在项目中的应用
- viewerjs在项目中的应用
- 用echart在vue项目中实现数据可视化
- 用webpack打包vue项目时如何实现性能调优
- CSS高度塌陷原理及解决方法
- CSS的几种定位机制
- 话说BFC
- export、export default和module.exports的用法及区别
- proto 和 prototype 深度剖析
- 服务端渲染的探索与实践
- 浏览器背后的运行机制
- 组件文档
- 基础组件
- 扩展按钮
- 扩展表格
- 定制面包屑
- 超级图片上传
- 地图定位
- 换肤调色板
- 富文本编辑器
- 视频上传
- 图片裁剪
- 表格树状列组件
- 自定义显示列
- 业务组件
- 更换头像
- 图片排序
- 地域选择
- 选择文章
- 文章分类选择
- 表单选择
- 商品选择
- 常见问题
- 捐赠支持
- 演示截图
- 功能列表