@@ -73,7 +73,7 @@ const styles = computed(() => {
const content = ref("");
watch(() => props.modelValue, (v) => {
- if (v !== content) {
+ if (v !== content.value) {
content.value = v === undefined ? "<p></p>" : v;
}
}, { immediate: true });