RuoYi
2025-02-28 3393757b8c3312e45c38ac95e011669ec4ad8285
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 });