Smart UI Components & Libraries – Grid, Scheduler, Gantt, Kanban for Angular, React, Next.js, Vue, Blazor, JavaScript › Forums › Editor & Inputs › Facing difficulties with: Input. Suggestions welcome. This topic has 1 reply, 2 voices, and was last updated 3 months ago by Markov. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts July 29, 2025 at 8:26 pm #112781 emily.thorne91Participant How do I handle two-way binding with Smart.DateRangeInput in Vue? Are Vue’s reactive data bindings sufficient? July 31, 2025 at 6:59 pm #112788 MarkovKeymaster Hi, You can achieve this with a custom v-model wrapper for Vue: <template> <smart-date-range-input :value="modelValue" @change="$emit('update:modelValue', $event.detail.value)" ></smart-date-range-input> </template> <script> export default { name: "DateRangeInputWrapper", props: { modelValue: String } }; </script> Regards, Markov Smart UI Team https://www.htmlelements.com/ Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In With Google Log In