RuoYi
2023-07-28 cce8921b52ba88070e78ee58ef0c1cb35e130574
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 });