[Vuejs]-Plugins don't work with multiple instances of CKEditor4 in Vue Components

0👍

It turned out to be a jQuery dialog interfering with CKEditor’s dialog. Once the editor was placed outside the dialog, the plugins work as long as no other jQuery dialog is open on the same window/tab.

0👍

Vue needs a key to differentiate different instances of the same component. The same you will do in a v-for.
I think you don’t need to do that initialize/destroy process but just bind needed properties to the editor and give a key to parent where this component is being injected.

Leave a comment