svelte-datepicker
svelte-datepicker copied to clipboard
Change start of week to Monday
Hi, any possibility to change the start of week from Sunday to Monday? thx
Funny that ai.com tells following answer which sound logically but is not working:
To change the start of the week from Sunday to Monday in the @beyonk/svelte-datepicker component, you can use the "firstDay" prop. This prop accepts a number representing the index of the first day of the week, where 0 represents Sunday, 1 represents Monday, and so on.
Here's an example code snippet that sets the first day of the week to Monday:
<script>
import { DatePicker } from '@beyonk/svelte-datepicker';
</script>
<DatePicker firstDay="1" />
By setting the "firstDay" prop to 1, you are telling the component to use Monday as the first day of the week.
-->
<DatePicker> was created with unknown prop 'firstDay'