Two-way binding can be achieved by using the v-model
directive in Vue. In the following sample, when you change the value in one TimePicker component, v-model will automatically update the value in the other TimePicker.
The following example demonstrates how to set the two-way-binding
in the TimePicker.
<template>
<div id="app">
<div id="wrapper1">
<ejs-timepicker id="timepicker" v-model="date"></ejs-timepicker>
</div>
<div id="wrapper2">
<ejs-timepicker id="timepicker1" v-model="date"></ejs-timepicker>
</div>
</div>
</template>
<script>
import Vue from "vue";
import { TimePickerPlugin } from "@syncfusion/ej2-vue-calendars";
Vue.use(TimePickerPlugin);
export default {
data: function() {
return {
date: new Date()
};
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-buttons/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-calendars/styles/material.css";
#wrapper1{
min-width: 250px;
float: left;
margin-left: 100px;
}
#wrapper2{
min-width: 250px;
float: right;
margin-right: 100px;
}
</style>