0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

tinymce-vueの日本語化対応

Last updated at Posted at 2020-11-05

tinymce-vue (WYSIWYGエディタのプラグイン)の日本語対応。
tinymce-vuenpm install でインストールした前提。
ちょっと公式ドキュメントがわかりにくかったので忘備録。

本題

下記のダウンロードリストからJapaneseの圧縮ファイルをインストールする。
Language Packages | Trusted Rich Text Editor | TinyMCE

展開して下記ディレクトリに配置。

node_modules/@tinymce/tinymce-vue/langs/ja.js

Vue側でlanguageを指定。

<editor
  :init="{
    language: 'ja',
    ~省略~
  }"
>
</editor>

おしまい。

参考

Localization options | Docs | TinyMCE

0
3
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?