RuoYi
2023-08-31 54ad578ec0505aeeabd0e79b0231f325a9412d21
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 });