This commit is contained in:
icssoa
2025-07-28 19:05:51 +08:00
parent 4cace687c4
commit 854bcd102d
2 changed files with 1 additions and 3 deletions

View File

@@ -251,7 +251,7 @@ const props = defineProps({
// 范围分隔符 // 范围分隔符
rangeSeparator: { rangeSeparator: {
type: String, type: String,
default: () => t("") default: () => t("")
}, },
// 是否显示快捷选项 // 是否显示快捷选项
showShortcuts: { showShortcuts: {
@@ -752,7 +752,6 @@ defineExpose({
clear, clear,
setRange, setRange,
setRangeValue, setRangeValue,
toDate,
confirm confirm
}); });
</script> </script>

View File

@@ -31,7 +31,6 @@ declare type ClSelectDateComponentPublicInstance = {
clear: () => void; clear: () => void;
setRange: (index: number) => void; setRange: (index: number) => void;
setRangeValue: (value: string[], index: number) => void; setRangeValue: (value: string[], index: number) => void;
toDate: () => string;
confirm: () => void; confirm: () => void;
}; };