{"id":14973798,"url":"https://github.com/mbouclas/tinymce-vue-2","last_synced_at":"2025-10-27T02:31:24.236Z","repository":{"id":71953836,"uuid":"79346030","full_name":"mbouclas/tinymce-vue-2","owner":"mbouclas","description":"A vue 2 component for TinyMCE","archived":false,"fork":false,"pushed_at":"2017-09-26T14:43:35.000Z","size":6,"stargazers_count":49,"open_issues_count":6,"forks_count":15,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-10-30T06:47:41.317Z","etag":null,"topics":["component","javascript","tinymce","vuejs2"],"latest_commit_sha":null,"homepage":null,"language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mbouclas.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2017-01-18T14:09:48.000Z","updated_at":"2024-09-02T08:26:09.000Z","dependencies_parsed_at":"2024-01-14T06:04:25.158Z","dependency_job_id":"7b9efef1-3efe-4a72-9469-822cbb1c611e","html_url":"https://github.com/mbouclas/tinymce-vue-2","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbouclas%2Ftinymce-vue-2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbouclas%2Ftinymce-vue-2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbouclas%2Ftinymce-vue-2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbouclas%2Ftinymce-vue-2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mbouclas","download_url":"https://codeload.github.com/mbouclas/tinymce-vue-2/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238422923,"owners_count":19469657,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["component","javascript","tinymce","vuejs2"],"created_at":"2024-09-24T13:49:25.733Z","updated_at":"2025-10-27T02:31:23.961Z","avatar_url":"https://github.com/mbouclas.png","language":"Vue","funding_links":[],"categories":["Awesome Vue.js [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)"],"sub_categories":["Libraries \u0026 Plugins"],"readme":"# tinymce-vue-2\nA vue 2 component for TinyMCE.\n# Install\n`npm install tinymce-vue-2`\n\n# How to use\n* Make sure that window.tinymce is present or it will not work\n* Then in your code just import it like so : `import TinyMCE from 'tinymce-vue-2';`\n* Finally, added to your component as components. If you want it globally available\nyou can just to this : `Vue.component('tiny-mce', TinyMCE);`\n* Check the [examples](#examples) on how to use it in your template\n\n# Examples\nUsing the default options, you just need to pass an id and a model\n```\n\u003ctiny-mce id=\"description\" v-model=\"description\"\u003e\u003c/tiny-mce\u003e\n```\n\nCheck the binding by doing something like `\u003cdiv v-html=\"description\"\u003e\u003c/div\u003e` anywhere in your\ntemplate.\n\nCheck bellow on how to configure and extend the editor.\n\n### Changing the menubar\n[Read the documentation first](https://www.tinymce.com/docs/configure/editor-appearance/#menubar)\n\nPass a prop called menubar which is either a string or a string variable. It can either be\na string or a boolean\n\n```\n\u003ctiny-mce id=\"descriptionLong\"\n        v-model=\"descriptionLong\"\n        :toolbar=\"'undo redo'\"\n\u003e\u003c/tiny-mce\u003e\n```\n\n### Changing the toolbar\n[Read the documentation first](https://www.tinymce.com/docs/configure/editor-appearance/#toolbar)\n\nPass a prop called toolbar which is either a string or a string variable\nto set the toolbar\n```\n\u003ctiny-mce id=\"descriptionLong\"\n        v-model=\"descriptionLong\"\n        :toolbar=\"'undo redo'\"\n\u003e\u003c/tiny-mce\u003e\n```\n\nIt can also be an array which will set multiple toolbars\n```\n[\n    'undo redo | styleselect | bold italic | link image',\n    'alignleft aligncenter alignright'\n  ]\n```\n\nor even a boolean like `false` to disable it\n\n### Passing other configuration options\nYou can pass any of the documented options to the editor using the otherProps property like so\n\n[Read the documentation first](https://www.tinymce.com/docs/configure/editor-appearance)\n\n\n```\n\u003ctiny-mce id=\"descriptionLong\"\n        v-model=\"descriptionLong\"\n        :other-props=\"{min_height:500, elementpath: false, allow_conditional_comments: false}\"\n\u003e\u003c/tiny-mce\u003e\n```\n\nThis allows you to freely configure the editor since all it does is merging your object\nwith the `tinymce` one","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmbouclas%2Ftinymce-vue-2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmbouclas%2Ftinymce-vue-2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmbouclas%2Ftinymce-vue-2/lists"}