Skip to content

Instantly share code, notes, and snippets.

@jasperf
Last active February 28, 2023 04:42
Show Gist options
  • Save jasperf/cf73051bc3da0d89ac3b26dd64dfc91e to your computer and use it in GitHub Desktop.
Save jasperf/cf73051bc3da0d89ac3b26dd64dfc91e to your computer and use it in GitHub Desktop.
Vue tinyMCE form
<div class="bg-white p-4 overflow-hidden shadow-xl sm:rounded-lg">
<editor
:init="{
content_css: false,
skin: false,
content_style: contentUiSkinCss.toString() + '\n' + contentCss.toString(),
height: 500,
menubar: false,
plugins: [
'link', 'lists','image', 'anchor', 'wordcount', 'media'
],
toolbar:
'undo redo | formatselect | bold italic backcolor | \
alignleft aligncenter alignright alignjustify | \
bullist numlist outdent indent | removeformat'
}"
/>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment