docs(calendar): other calendar systems (#3447)

This commit is contained in:
Hessam A. Cheraghi
2025-03-04 13:11:00 +03:30
committed by GitHub
parent fb4e05c65f
commit 629c54261a
2 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<script lang="ts" setup>
import { CalendarDate, HebrewCalendar } from '@internationalized/date'
const hebrewDate = shallowRef(new CalendarDate(new HebrewCalendar(), 5781, 1, 1))
</script>
<template>
<UCalendar v-model="hebrewDate" />
</template>