I want to update this. it is working correctly. however now i have trouble trying to set the model to a default value. it works on browser and android but not on ios.
<q-datetime :default-value=“today” format=“YYYY-MM-DD” format-model=“string” :min=“today” type=“date” :value=“checkindate” @change=“val => { checkindate = val }” />
import { date } from ‘quasar’ …
data () {
return{
today: date.formatDate(new Date(), ‘YYYY-MM-DD HH:mm’),
checkindate: null
}