@cafebazaar/emrooz
Version:
Emrooz is a multilingual calendar built for Vue3. It also supports both Shamsi (Persian / Jalali) and Gregorian (English) calendars.
10 lines (9 loc) • 311 B
TypeScript
import { Ref } from 'vue';
export default function useDateCompares({ currentMonth, currentYear, currentDay, }: {
currentMonth: Ref<number>;
currentYear: Ref<number>;
currentDay: Ref<number>;
}): {
isToday: import("vue").ComputedRef<boolean>;
isActive: import("vue").ComputedRef<boolean>;
};