GIJGO
Examples
Documentation
Report a Bug
Download
Bootstrap 3
Bootstrap 4
Bootstrap 5
Material Design
Date Range Picker
Localization
Vue.js
Gijgo.com
Datepicker
Examples
Vue.js
Vue.js DatePicker
Vue.js DatePicker control that is using Material Design theme
Preview
Front-End Code
Edit
<html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Vue.js date range picker</title> <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.9/vue.min.js" type="text/javascript"></script> <script src="https://unpkg.com/gijgo@1.9.14/js/gijgo.min.js" type="text/javascript"></script> <link href="https://unpkg.com/gijgo@1.9.14/css/gijgo.min.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="app"></div> <script type="text/x-template" id="demo-template"> <div> <p>Selected Date: {{ value }}</p> <datepicker v-model="value"></datepicker> </div> </script> <script type="text/x-template" id="datepicker-template"> <input type="text" width="276" /> </script> <script> var startDate = '12/08/2017'; Vue.component('datepicker', { template: '#datepicker-template', props: ['value'], mounted: function () { var self = this; $(self.$el) .datepicker({ minDate: startDate, value: startDate }) // init datepicker .trigger('change') .on('change', function () { // emit event on change. self.$emit('input', this.value); }) }, watch: { value: function (value) { $(this.$el).val(value); } }, destroyed: function () { $(this.$el).datepicker('destroy'); } }) var app = new Vue({ el: '#app', template: '#demo-template', data: { value: startDate } }) </script> </body> </html>
;