I am using vue3-datepicker library.
      <datepicker  
      v-model="to_date"
      inputFormat="yyyy-MM-dd"
       />
My data method is below:
data(){
    to_date: new Date(),
}
When I am selecting a date and printing {{this.to_date}}, it is printing in Fri Sep 17 2021 09:39:49 GMT+0530 (India Standard Time).
I want it in yyyy-MM-dd format.
How can I achieve this?
 
     
    