We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f332e3 commit 09c9f8aCopy full SHA for 09c9f8a
src/components/Tinymce/src/Editor.vue
@@ -92,6 +92,7 @@
92
}
93
);
94
onMountedOrActivated(() => {
95
+ tinymceId.value = snowUuid('tiny-vue');
96
nextTick(() => {
97
init();
98
});
@@ -152,6 +153,7 @@
152
153
function bindModelHandlers(editor: any) {
154
const modelEvents = attrs.modelEvents ? attrs.modelEvents : null;
155
const normalizedEvents = Array.isArray(modelEvents) ? modelEvents.join(' ') : modelEvents;
156
+
157
watch(
158
() => props.modelValue,
159
(val: string, prevVal: string) => {
0 commit comments