vue tinymce汉化
时间: 2023-11-09 16:02:18 浏览: 158
tinymce简体中文版
4星 · 用户满意度95%
要将 Vue-Tinymce 汉化,可以按照以下步骤进行:
1. 安装中文语言*** 组件中引入语言包:
```
import tinymce from 'tinymce/tinymce'
import 'tinymce/themes/silver'
import 'tinymce/langs/zh_CN'
import Editor from '@tinymce/tinymce-vue'
```
3. 在 Editor 组件中设置语言:
```
<editor
:init="{
language: 'zh_CN',
// 其他配置项
}"
/>
```
阅读全文