RuoYi
2023-08-31 c5fe5bf3cb9bd1bf3383a1a431ac37f640485783
src/components/Editor/index.vue
@@ -73,7 +73,7 @@
const content = ref("");
watch(() => props.modelValue, (v) => {
  if (v !== content) {
  if (v !== content.value) {
    content.value = v === undefined ? "<p></p>" : v;
  }
}, { immediate: true });