Last active
February 28, 2023 04:42
-
-
Save jasperf/cf73051bc3da0d89ac3b26dd64dfc91e to your computer and use it in GitHub Desktop.
Vue tinyMCE form
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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