feat: increase support for multiple time zones

This commit is contained in:
zhongming4762 2025-10-22 20:29:53 +08:00
parent 61ce53b686
commit e3e5755903

View File

@ -22,12 +22,8 @@ interface Props {
timezone?: string; timezone?: string;
} }
interface Listener {
change: (timezone: string) => void;
}
const props = defineProps<Props>(); const props = defineProps<Props>();
const emit = defineEmits<Listener>(); const emit = defineEmits<{ change: [string] }>();
const TimezoneIcon = createIconifyIcon('fluent-mdl2:world-clock'); const TimezoneIcon = createIconifyIcon('fluent-mdl2:world-clock');