[fix] 修复日历组件close事件问题

This commit is contained in:
aisen
2025-01-09 15:28:27 +08:00
parent c001636b3a
commit 24f83965b5

View File

@@ -534,7 +534,9 @@
},
// 关闭窗口
close() {
this.$emit('input', false)
this.$emit('input', false);
//传递事件
this.$emit('close');
}
}
}