cd-editor
v1.0.14
Published
TinyMCE 富文本编辑器组件,支持导入 Word/Excel
Downloads
161
Maintainers
Readme
cd-editor
基于 TinyMCE 的 Vue 3 富文本编辑器组件,支持导入 Word 和 Excel 文件。
安装
pnpm install cd-editor使用
<template>
<CdEditor v-model="content" :height="500" />
</template>
<script setup>
import { ref } from 'vue'
import { CdEditor } from 'cd-editor'
const content = ref('<p>Hello World</p>')
</script>Props
| 属性 | 类型 | 默认值 | 说明 | |------|------|--------|------| | modelValue | string | '' | 编辑器内容 (v-model) | | height | number | 400 | 编辑器高度 | | toolbar | string | 默认工具栏 | 自定义工具栏 | | plugins | string[] | 默认插件列表 | 自定义插件 | | config | object | {} | TinyMCE 额外配置 |
功能
- ✅ 导入 Word 文档 (.docx)
- ✅ 导入 Excel 文件 (.xlsx)
- ✅ 完整的 TinyMCE 功能
- ✅ 中文界面
构建
pnpm install
pnpm build发布
pnpm publish