[Vuejs]-How to get the value of a datepicker using framework7 and vuejs?

0👍

You can try doing it by javascript:

var calendar = app.calendar.get(element_selector); // Get the calendar instance
var values = calendar.getValue();   //Returns current calendar value

You can also find it in the official documentations:
Framework7 calendar docs

Leave a comment