RuoYi
2023-04-23 4250792a2a5207c4c5ca64654555db74bd28a908
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 });