RuoYi
2024-12-11 c89ba258bcea60f6bb7c6bceb782495b7e1a1a40
src/components/Editor/index.vue
@@ -108,7 +108,7 @@
const content = ref("");
watch(() => props.modelValue, (v) => {
  if (v !== content.value) {
    content.value = v === undefined ? "<p></p>" : v;
    content.value = v == undefined ? "<p></p>" : v;
  }
}, { immediate: true });