icehaunter / vue3-datepicker

Simple datepicker component for Vue 3
https://icehaunter.github.io/vue3-datepicker/
MIT License
151 stars 151 forks source link

:start-date not working for week picker #107

Closed kevieman closed 1 year ago

kevieman commented 1 year ago

Hi i'm trying to set a :start-date for a week picker like so:

<template>
<Datepicker v-model="dates" :start-date="startDate" placeholder="Select Date" week-picker />
</template>
<script>
    data() {
        dates: [...],
        startDate: new Date(2020, 2),
    }
</script>

But this doesnt seem to work. Start date with normal datepicker works fine.

icehaunter commented 1 year ago

Hello, I'm not sure if you're in a correct repository. This component doesn't allow picking multiple dates, doesn't have a week-picker prop, or a start-date prop. Maybe you're using one of the forks?