Explorar o código

fix(tinymce): the editor reports an error under keep-alive #152

vben %!s(int64=4) %!d(string=hai) anos
pai
achega
09c9f8a881
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  1. 2 0
      src/components/Tinymce/src/Editor.vue

+ 2 - 0
src/components/Tinymce/src/Editor.vue

@@ -92,6 +92,7 @@
         }
       );
       onMountedOrActivated(() => {
+        tinymceId.value = snowUuid('tiny-vue');
         nextTick(() => {
           init();
         });
@@ -152,6 +153,7 @@
       function bindModelHandlers(editor: any) {
         const modelEvents = attrs.modelEvents ? attrs.modelEvents : null;
         const normalizedEvents = Array.isArray(modelEvents) ? modelEvents.join(' ') : modelEvents;
+
         watch(
           () => props.modelValue,
           (val: string, prevVal: string) => {