alireza-ab / vue-persian-datepicker

A datepicker component for select Persian date
https://alireza-ab.ir/datepicker
MIT License
44 stars 9 forks source link

get display value #16

Closed Mohammad99k closed 2 years ago

Mohammad99k commented 2 years ago

Hi how can I get the display value?

var date = new Vue({
              ...
            });
alireza-ab commented 2 years ago

Hi @Mohammad99k

If you mean that date user selected, with this way you can get it:

<date-picker v-model="date"></date-picker>
<script>
export default {
  data(){
    return {
      date:null
    }
  }
}
</script>
Mohammad99k commented 2 years ago

actually I have v-model and display format is different from output format. I want access date as display format of date than user select. thank you

alireza-ab commented 2 years ago

Please see this https://alireza-ab.ir/datepicker/formatting#output-format.