vue-tinymce
This a component provides easy use of tinymce for vue developers
Demo
You can see a demo and an example in this page: Demo & examples
Instalation
$ npm install vue-tinymce
How to use
You may use the component in your markup
{ return data: '' }
Properties
Property | Type | Default | Description |
---|---|---|---|
id | required, String | id of component's textarea | |
toolbar1 | String | 'formatselect \| bold italic strikethrough forecolor backcolor \| link \| alignleft aligncenter alignright alignjustify \| numlist bullist outdent indent \| removeformat' |
Toolbar 1 of tinymce |
toolbar2 | String | '' | Toolbar 2 of tinymce |
plugins | Array | ['advlist autolink lists link image charmap print preview hr anchor pagebreak', 'searchreplace wordcount visualblocks visualchars code fullscreen', 'insertdatetime media nonbreaking save table contextmenu directionality','template paste textcolor colorpicker textpattern imagetools toc help emoticons hr codesample'] |
plugins of tinymce you need to load |
other_options | Array | {} | other tinymce options. you can also override our initial options |
readonly | Boolean | false | Enables or disables the Editor |
Events
Event | Parameter | Description |
---|---|---|
editorChange | Event | This event will be called when tinymce calls onchane |
editorInit | Editor | This event will be called after editor is initialized |
Localization
If you wish to use tinymce in other languages, please follow these steps:
- Download the language pack you wish to use from here.
- Unpack the language file into your desired path, which is accessible from outside and there is a URL pointing to it.
- Finally, set language_url in other_options to the URL pointing to the language file.
For example:
{ return data: '' options: language_url: 'http://example.com/js/langs/fa_IR.js' //This url points to location of persian language file. }
Direct access to tinymce editor
You can access the tinymce itself by setting a ref to this component:
Then you can access the editor by calling:
this$refstmeditor