RuoYi
2023-08-21 2e1bd34d58f1572b7f205125bd9b184d1d8fd06d
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 });