tinymce-vue
tinymce-vue copied to clipboard
disabled props is true when component first mounted,the fontselect toolbar was empty
What is the current behavior?
disabled props is true when component first mounted,the fontselect toolbar was empty
this is the code
<template>
<Editor api-key="no-api-key" :init="initConfig" :disabled="true"></Editor>
</template>
<script>
import "tinymce/skins/ui/oxide/skin.min.css"
import Editor from "@tinymce/tinymce-vue"
export default {
name: "editor-demo-iframe",
data() {
return {
initConfig: {
toolbar: [
"fontselect | fontsizeselect | bold italic underline strikethrough | forecolor backcolor | alignleft aligncenter alignright alignjustify | outdent indent | numlist bullist | removeformat | subscript superscript | charmap | emoticons | fullscreen | preview | print | help",
],
},
disabled: false
}
},
components: {
Editor,
},
}
</script>
What is the expected behavior?
disabled props is true when component first mounted,the fontselect toolbar has value
Which versions of TinyMCE, and which browser / OS are affected by this issue? Did this work in previous versions of TinyMCE or tinymce-vue?
vue: 2.7.17 tinymce/tinymce-vue: 3.2.8 browser/OS: chrome(last version) / windows 11
Ref: INT-3193
This issue is stale because it has been open 30 days with no activity. Please comment if you wish to keep this issue open or it will be closed in 7 days.
This issue was closed because it has been stalled for 7 days with no activity.