We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to set a default date in vue-rangedate-picker but it's not showing in input. Follow is my code:-
<vue-rangedate-picker v-model="effected_date" @selected="onDateSelected2" i18n="EN" format="YYYY-MM-DD">
and model initialize:-
data: function () { return { effected_date: { start: '2018-10-18', end: '2018-10-20', } } }
But it's not worked. Then I have searched solution and got this:-
<vue-rangedate-picker :initRange="datePickerConfig.initRange" @selected="onDateSelected" i18n="EN" format="YYYY-MM-DD">
data: function () { return { datePickerConfig:{ initRange: { start: new Date('2018-10-15'), end: new Date('2018-10-21') } } } }
Still it's not worked for me. Please help me to get solution for set default date.
Thankyou
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to set a default date in vue-rangedate-picker but it's not showing in input. Follow is my code:-
and model initialize:-
data: function () { return { effected_date: { start: '2018-10-18', end: '2018-10-20', } } }
But it's not worked. Then I have searched solution and got this:-
Still it's not worked for me. Please help me to get solution for set default date.
Thankyou
The text was updated successfully, but these errors were encountered: