RuoYi
2024-12-30 31cffcb9d4c9c774d824c2eb1adc52abc8a3dfb6
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 });