-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
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
v-model is not working #60
Comments
@RakibSiddiquee Sorry, I got a todo list for v-model:
You can use |
How to pass the value in @change? any example? |
@RakibSiddiquee sorry, I almost forgot that we do not support prop: |
@RakibSiddiquee I have updated the docs If you has any question, please let me know! <template>
<div>
<v-md-date-range-picker
:opens="opens"
start-date="2019-01-01"
end-date="2019-01-02"
@change="handleChange"
></v-md-date-range-picker>
<div style="margin: 10px">
values: {{values}}
</div>
</div>
</template>
<script>
export default {
data: () => ({
values: [],
}),
methods: {
handleChange (values) {
console.log(values)
this.values = values
}
}
}
</script> |
That's great! You saved my day dude. |
@RakibSiddiquee I will mark this issue as TODO, If I complete it, I will @you. If you has any question, please let me know. |
How to get value of the range picker in change event? I tried using v-model, but its not working.
Please help.
The text was updated successfully, but these errors were encountered: