dwqs / v2-datepicker

A simple datepicker component based Vue 2.x: https://dwqs.github.io/v2-datepicker/
MIT License
89 stars 21 forks source link

custom displaying format like : dd-MMM-yyyy #33

Closed ayoublind closed 4 years ago

ayoublind commented 4 years ago

Hi, I'm using v2-datepicker like this:

<v2-datepicker
         :id="input.id"
         v-bind:ref="input.id"
         v-model="input.value"
        lang="en"
        :picker-options="{}"
        format="dd MMM yyyy"
        v-on:change="datechanged($event)"
></v2-datepicker>

and in the datechange method i can change my date afc, but the display date is : 30-333-2020

how can i use a customer function for doing this !?