Skip to content

Commit

Permalink
v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dwqs committed Mar 24, 2018
1 parent 27f6d7d commit f554ee6
Show file tree
Hide file tree
Showing 5 changed files with 580 additions and 373 deletions.
60 changes: 55 additions & 5 deletions lib/date-picker-range.js
Original file line number Diff line number Diff line change
Expand Up @@ -433,6 +433,25 @@ var contains = exports.contains = function contains(root, target) {
return false;
};

var setPanelPosition = exports.setPanelPosition = function setPanelPosition(panelHeight, wrapRect) {
var wrapHeight = wrapRect.height;
var wrapTop = wrapRect.top;

var docHeight = document.documentElement.clientHeight;
var panelDefTop = wrapTop + wrapHeight;

var diff = docHeight - panelDefTop;
if (diff < panelHeight) {
if (wrapTop > panelHeight) {
return -(panelHeight + 10);
} else {
return diff - panelHeight;
}
} else {
return 32;
}
};

/***/ }),
/* 8 */
/***/ (function(module, exports) {
Expand Down Expand Up @@ -792,6 +811,9 @@ exports.default = {
rightDate: initRightDate,
shown: false,
shownClear: false,
top: 32,
panelHeight: null,
wrapRect: null,
minWidth: 540,
shownSideBar: false,

Expand Down Expand Up @@ -823,6 +845,16 @@ exports.default = {
},

methods: {
handleBeforeEnter: function handleBeforeEnter() {
var _this = this;

this.$nextTick(function () {
if (!_this.panelHeight) {
_this.panelHeight = parseInt(window.getComputedStyle(_this.$refs.panel, null).getPropertyValue('height'));
}
_this.top = (0, _utils.setPanelPosition)(_this.panelHeight, _this.wrapRect);
});
},
initDate: function initDate(MONTH) {
if (Array.isArray(this.value) && this.value.length === 2) {
var leftDate = (0, _utils.isDate)(this.value[0]) ? new Date(this.value[0]) : new Date();
Expand Down Expand Up @@ -993,6 +1025,17 @@ exports.default = {
this.shown = false;
}
},
handleDocResize: function handleDocResize() {
var _this2 = this;

this.wrapRect = this.$refs.wrap.getBoundingClientRect();
this.$nextTick(function () {
if (!_this2.panelHeight) {
_this2.panelHeight = parseInt(window.getComputedStyle(_this2.$refs.panel, null).getPropertyValue('height'));
}
_this2.top = (0, _utils.setPanelPosition)(_this2.panelHeight, _this2.wrapRect);
});
},
handleTriggerClick: function handleTriggerClick() {
if (this.disabled) {
return;
Expand All @@ -1019,11 +1062,18 @@ exports.default = {
}
},
mounted: function mounted() {
this.wrapRect = this.$refs.wrap.getBoundingClientRect();
this.top = this.wrapRect.top;

window.document.addEventListener('click', this.handleDocClick, false);
window.document.addEventListener('scroll', this.handleDocResize, false);
window.addEventListener('resize', this.handleDocResize, false);
this.changeLinkStatus(this.leftDate, this.rightDate);
},
beforeDestroy: function beforeDestroy() {
window.document.removeEventListener('click', this.handleDocClick);
window.document.removeEventListener('click', this.handleDocClick, false);
window.document.removeEventListener('scroll', this.handleDocResize, false);
window.removeEventListener('resize', this.handleDocResize, false);
},


Expand Down Expand Up @@ -1585,7 +1635,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_index_vue__ = __webpack_require__(21);
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_index_vue___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_index_vue__);
/* harmony namespace reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_index_vue__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_index_vue__[key]; }) }(__WEBPACK_IMPORT_KEY__));
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_3e0306db_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_index_vue__ = __webpack_require__(73);
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_ae647160_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_index_vue__ = __webpack_require__(73);
var normalizeComponent = __webpack_require__(1)
/* script */

Expand All @@ -1602,7 +1652,7 @@ var __vue_scopeId__ = null
var __vue_module_identifier__ = null
var Component = normalizeComponent(
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_index_vue___default.a,
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_3e0306db_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_index_vue__["a" /* default */],
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_ae647160_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_index_vue__["a" /* default */],
__vue_template_functional__,
__vue_styles__,
__vue_scopeId__,
Expand Down Expand Up @@ -2243,13 +2293,13 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
/***/ (function(module, __webpack_exports__, __webpack_require__) {

"use strict";
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{class:[
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{ref:"wrap",class:[
'v2-date-wrap',
'v2-date-range-wrap',
{
'is-disabled': _vm.disabled
}
],on:{"mouseover":function($event){_vm.shownClear=true},"mouseout":function($event){_vm.shownClear=false}}},[_c('span',{ref:"trigger",class:['v2-picker-trigger', {'empty-text': !_vm.selectedRange}],on:{"click":_vm.handleTriggerClick}},[_vm._v(_vm._s(_vm.selectedRange ? _vm.selectedRange : _vm._placeholder))]),_vm._v(" "),(_vm.selectedRange && _vm.shownClear)?_c('svg',{staticClass:"v2-date-clear",attrs:{"viewBox":"0 0 1024 1024","version":"1.1","xmlns":"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","width":"16","height":"16"},on:{"click":function($event){$event.stopPropagation();_vm.clearDate($event)}}},[_c('path',{attrs:{"d":"M479.072 512l-98.72-98.72c-9.152-9.152-9.088-23.84 0-32.928 9.152-9.152 23.84-9.088 32.928 0l98.72 98.72 98.72-98.72c9.152-9.152 23.84-9.088 32.928 0 9.152 9.152 9.088 23.84 0 32.928l-98.72 98.72 98.72 98.72c9.152 9.152 9.088 23.84 0 32.928-9.152 9.152-23.84 9.088-32.928 0l-98.72-98.72-98.72 98.72c-9.152 9.152-23.84 9.088-32.928 0-9.152-9.152-9.088-23.84 0-32.928l98.72-98.72zM512 837.824c179.936 0 325.824-145.888 325.824-325.824s-145.888-325.824-325.824-325.824c-179.936 0-325.824 145.888-325.824 325.824s145.888 325.824 325.824 325.824z","p-id":"3296","fill":"#cdcdcd"}})]):_vm._e(),_vm._v(" "),_c('svg',{staticClass:"v2-date-icon",attrs:{"viewBox":"0 0 1024 1024","version":"1.1","xmlns":"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","width":"16","height":"16"}},[_c('path',{attrs:{"d":"M693.527273 460.8c32.581818 0 65.163636 0 97.745455 0 0-23.272727 0-41.890909 0-65.163636-37.236364 0-65.163636 0-97.745455 0C693.527273 418.909091 693.527273 437.527273 693.527273 460.8z","p-id":"1933","fill":"#797973"}}),_vm._v(" "),_c('path',{attrs:{"d":"M232.727273 623.709091c32.581818 0 65.163636 0 97.745455 0 0-23.272727 0-41.890909 0-65.163636-32.581818 0-65.163636 0-97.745455 0C232.727273 581.818182 232.727273 605.090909 232.727273 623.709091z","p-id":"1934","fill":"#797973"}}),_vm._v(" "),_c('path',{attrs:{"d":"M465.454545 623.709091c32.581818 0 65.163636 0 97.745455 0 0-23.272727 0-41.890909 0-65.163636-32.581818 0-65.163636 0-97.745455 0C465.454545 581.818182 465.454545 605.090909 465.454545 623.709091z","p-id":"1935","fill":"#797973"}}),_vm._v(" "),_c('path',{attrs:{"d":"M791.272727 558.545455c-32.581818 0-65.163636 0-93.090909 0 0 23.272727 0 46.545455 0 65.163636 32.581818 0 60.509091 0 93.090909 0C791.272727 600.436364 791.272727 581.818182 791.272727 558.545455z","p-id":"1936","fill":"#797973"}}),_vm._v(" "),_c('path',{attrs:{"d":"M232.727273 786.618182c37.236364 0 65.163636 0 97.745455 0 0-23.272727 0-41.890909 0-65.163636-32.581818 0-65.163636 0-97.745455 0C232.727273 749.381818 232.727273 768 232.727273 786.618182z","p-id":"1937","fill":"#797973"}}),_vm._v(" "),_c('path',{attrs:{"d":"M460.8 791.272727c32.581818 0 65.163636 0 97.745455 0 0-23.272727 0-41.890909 0-65.163636-32.581818 0-65.163636 0-97.745455 0C460.8 749.381818 460.8 768 460.8 791.272727z","p-id":"1938","fill":"#797973"}}),_vm._v(" "),_c('path',{attrs:{"d":"M693.527273 791.272727c32.581818 0 65.163636 0 97.745455 0 0-23.272727 0-41.890909 0-65.163636-32.581818 0-65.163636 0-97.745455 0C693.527273 749.381818 693.527273 772.654545 693.527273 791.272727z","p-id":"1939","fill":"#797973"}}),_vm._v(" "),_c('path',{attrs:{"d":"M330.472727 395.636364c-32.581818 0-65.163636 0-97.745455 0C232.727273 418.909091 232.727273 437.527273 232.727273 456.145455c32.581818 0 65.163636 0 97.745455 0C330.472727 437.527273 330.472727 418.909091 330.472727 395.636364z","p-id":"1940","fill":"#797973"}}),_vm._v(" "),_c('path',{attrs:{"d":"M563.2 395.636364c-32.581818 0-65.163636 0-97.745455 0 0 23.272727 0 41.890909 0 60.509091 32.581818 0 65.163636 0 97.745455 0C563.2 437.527273 563.2 418.909091 563.2 395.636364z","p-id":"1941","fill":"#797973"}}),_vm._v(" "),_c('path',{attrs:{"d":"M921.6 93.090909l-121.018182 0L800.581818 23.272727C800.581818 9.309091 791.272727 0 777.309091 0s-23.272727 9.309091-23.272727 23.272727L754.036364 93.090909l-218.763636 0L535.272727 23.272727C535.272727 9.309091 525.963636 0 512 0c-13.963636 0-23.272727 9.309091-23.272727 23.272727L488.727273 93.090909 274.618182 93.090909 274.618182 23.272727C274.618182 9.309091 265.309091 0 251.345455 0 237.381818 0 228.072727 9.309091 228.072727 23.272727L228.072727 93.090909 102.4 93.090909C46.545455 93.090909 0 139.636364 0 195.490909l0 721.454545C0 977.454545 46.545455 1024 102.4 1024l814.545455 0c55.854545 0 102.4-46.545455 102.4-102.4L1019.345455 195.490909C1024 139.636364 977.454545 93.090909 921.6 93.090909zM977.454545 921.6c0 32.581818-27.927273 55.854545-55.854545 55.854545L102.4 977.454545C74.472727 977.454545 46.545455 949.527273 46.545455 921.6L46.545455 195.490909C46.545455 167.563636 74.472727 139.636364 102.4 139.636364l121.018182 0 0 69.818182C228.072727 218.763636 237.381818 232.727273 251.345455 232.727273c13.963636 0 23.272727-9.309091 23.272727-23.272727L274.618182 139.636364l214.109091 0 0 69.818182C488.727273 218.763636 498.036364 232.727273 512 232.727273c13.963636 0 23.272727-9.309091 23.272727-23.272727L535.272727 139.636364l218.763636 0 0 69.818182c0 13.963636 9.309091 23.272727 23.272727 23.272727s23.272727-9.309091 23.272727-23.272727L800.581818 139.636364l121.018182 0C949.527273 139.636364 977.454545 167.563636 977.454545 195.490909L977.454545 921.6z","p-id":"1942","fill":"#797973"}})]),_vm._v(" "),_c('transition',{attrs:{"name":"zoom-in-top"}},[_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.shown),expression:"shown"}],staticClass:"v2-picker-panel-wrap v2-picker-range-panel-wrap",style:({minWidth: _vm.minWidth + 'px'})},[(_vm.shownSideBar)?_c('short-cuts',{attrs:{"shortcuts":_vm.pickerOptions.shortcuts},on:{"pick":_vm.handleShortcutPick}}):_vm._e(),_vm._v(" "),_c('div',{staticClass:"v2-picker-range-panel v2-picker-range__left-panel",style:({marginLeft: _vm.shownSideBar ? '110px' : '0'})},[_c('div',{staticClass:"v2-picker-panel__header"},[_c('div',{staticClass:"v2-picker-header__label"},[_c('span',{staticClass:"v2-picker-header__label-text",domProps:{"innerHTML":_vm._s(_vm.formatYearMonthText(1))}})]),_vm._v(" "),_c('div',{staticClass:"v2-picker-header__toggle v2-picker-header__toggle-prev"},[_c('i',{staticClass:"v2-toggle-icon v2-toggle-icon__prev-year v2-toggle-icon__left-prev-year",on:{"click":function($event){_vm.changeLeftYear(-1)}}}),_vm._v(" "),_c('i',{staticClass:"v2-toggle-icon v2-toggle-icon__prev-month v2-toggle-icon__left-prev-month",on:{"click":function($event){_vm.changeLeftMonth(-1)}}})]),_vm._v(" "),(_vm.unlinkPanels)?_c('div',{staticClass:"v2-picker-header__toggle v2-picker-header__toggle-next"},[_c('i',{class:[
],on:{"mouseover":function($event){_vm.shownClear=true},"mouseout":function($event){_vm.shownClear=false}}},[_c('span',{ref:"trigger",class:['v2-picker-trigger', {'empty-text': !_vm.selectedRange}],on:{"click":_vm.handleTriggerClick}},[_vm._v(_vm._s(_vm.selectedRange ? _vm.selectedRange : _vm._placeholder))]),_vm._v(" "),(_vm.selectedRange && _vm.shownClear)?_c('svg',{staticClass:"v2-date-clear",attrs:{"viewBox":"0 0 1024 1024","version":"1.1","xmlns":"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","width":"16","height":"16"},on:{"click":function($event){$event.stopPropagation();_vm.clearDate($event)}}},[_c('path',{attrs:{"d":"M479.072 512l-98.72-98.72c-9.152-9.152-9.088-23.84 0-32.928 9.152-9.152 23.84-9.088 32.928 0l98.72 98.72 98.72-98.72c9.152-9.152 23.84-9.088 32.928 0 9.152 9.152 9.088 23.84 0 32.928l-98.72 98.72 98.72 98.72c9.152 9.152 9.088 23.84 0 32.928-9.152 9.152-23.84 9.088-32.928 0l-98.72-98.72-98.72 98.72c-9.152 9.152-23.84 9.088-32.928 0-9.152-9.152-9.088-23.84 0-32.928l98.72-98.72zM512 837.824c179.936 0 325.824-145.888 325.824-325.824s-145.888-325.824-325.824-325.824c-179.936 0-325.824 145.888-325.824 325.824s145.888 325.824 325.824 325.824z","p-id":"3296","fill":"#cdcdcd"}})]):_vm._e(),_vm._v(" "),_c('svg',{staticClass:"v2-date-icon",attrs:{"viewBox":"0 0 1024 1024","version":"1.1","xmlns":"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","width":"16","height":"16"},on:{"click":_vm.handleTriggerClick}},[_c('path',{attrs:{"d":"M693.527273 460.8c32.581818 0 65.163636 0 97.745455 0 0-23.272727 0-41.890909 0-65.163636-37.236364 0-65.163636 0-97.745455 0C693.527273 418.909091 693.527273 437.527273 693.527273 460.8z","p-id":"1933","fill":"#797973"}}),_vm._v(" "),_c('path',{attrs:{"d":"M232.727273 623.709091c32.581818 0 65.163636 0 97.745455 0 0-23.272727 0-41.890909 0-65.163636-32.581818 0-65.163636 0-97.745455 0C232.727273 581.818182 232.727273 605.090909 232.727273 623.709091z","p-id":"1934","fill":"#797973"}}),_vm._v(" "),_c('path',{attrs:{"d":"M465.454545 623.709091c32.581818 0 65.163636 0 97.745455 0 0-23.272727 0-41.890909 0-65.163636-32.581818 0-65.163636 0-97.745455 0C465.454545 581.818182 465.454545 605.090909 465.454545 623.709091z","p-id":"1935","fill":"#797973"}}),_vm._v(" "),_c('path',{attrs:{"d":"M791.272727 558.545455c-32.581818 0-65.163636 0-93.090909 0 0 23.272727 0 46.545455 0 65.163636 32.581818 0 60.509091 0 93.090909 0C791.272727 600.436364 791.272727 581.818182 791.272727 558.545455z","p-id":"1936","fill":"#797973"}}),_vm._v(" "),_c('path',{attrs:{"d":"M232.727273 786.618182c37.236364 0 65.163636 0 97.745455 0 0-23.272727 0-41.890909 0-65.163636-32.581818 0-65.163636 0-97.745455 0C232.727273 749.381818 232.727273 768 232.727273 786.618182z","p-id":"1937","fill":"#797973"}}),_vm._v(" "),_c('path',{attrs:{"d":"M460.8 791.272727c32.581818 0 65.163636 0 97.745455 0 0-23.272727 0-41.890909 0-65.163636-32.581818 0-65.163636 0-97.745455 0C460.8 749.381818 460.8 768 460.8 791.272727z","p-id":"1938","fill":"#797973"}}),_vm._v(" "),_c('path',{attrs:{"d":"M693.527273 791.272727c32.581818 0 65.163636 0 97.745455 0 0-23.272727 0-41.890909 0-65.163636-32.581818 0-65.163636 0-97.745455 0C693.527273 749.381818 693.527273 772.654545 693.527273 791.272727z","p-id":"1939","fill":"#797973"}}),_vm._v(" "),_c('path',{attrs:{"d":"M330.472727 395.636364c-32.581818 0-65.163636 0-97.745455 0C232.727273 418.909091 232.727273 437.527273 232.727273 456.145455c32.581818 0 65.163636 0 97.745455 0C330.472727 437.527273 330.472727 418.909091 330.472727 395.636364z","p-id":"1940","fill":"#797973"}}),_vm._v(" "),_c('path',{attrs:{"d":"M563.2 395.636364c-32.581818 0-65.163636 0-97.745455 0 0 23.272727 0 41.890909 0 60.509091 32.581818 0 65.163636 0 97.745455 0C563.2 437.527273 563.2 418.909091 563.2 395.636364z","p-id":"1941","fill":"#797973"}}),_vm._v(" "),_c('path',{attrs:{"d":"M921.6 93.090909l-121.018182 0L800.581818 23.272727C800.581818 9.309091 791.272727 0 777.309091 0s-23.272727 9.309091-23.272727 23.272727L754.036364 93.090909l-218.763636 0L535.272727 23.272727C535.272727 9.309091 525.963636 0 512 0c-13.963636 0-23.272727 9.309091-23.272727 23.272727L488.727273 93.090909 274.618182 93.090909 274.618182 23.272727C274.618182 9.309091 265.309091 0 251.345455 0 237.381818 0 228.072727 9.309091 228.072727 23.272727L228.072727 93.090909 102.4 93.090909C46.545455 93.090909 0 139.636364 0 195.490909l0 721.454545C0 977.454545 46.545455 1024 102.4 1024l814.545455 0c55.854545 0 102.4-46.545455 102.4-102.4L1019.345455 195.490909C1024 139.636364 977.454545 93.090909 921.6 93.090909zM977.454545 921.6c0 32.581818-27.927273 55.854545-55.854545 55.854545L102.4 977.454545C74.472727 977.454545 46.545455 949.527273 46.545455 921.6L46.545455 195.490909C46.545455 167.563636 74.472727 139.636364 102.4 139.636364l121.018182 0 0 69.818182C228.072727 218.763636 237.381818 232.727273 251.345455 232.727273c13.963636 0 23.272727-9.309091 23.272727-23.272727L274.618182 139.636364l214.109091 0 0 69.818182C488.727273 218.763636 498.036364 232.727273 512 232.727273c13.963636 0 23.272727-9.309091 23.272727-23.272727L535.272727 139.636364l218.763636 0 0 69.818182c0 13.963636 9.309091 23.272727 23.272727 23.272727s23.272727-9.309091 23.272727-23.272727L800.581818 139.636364l121.018182 0C949.527273 139.636364 977.454545 167.563636 977.454545 195.490909L977.454545 921.6z","p-id":"1942","fill":"#797973"}})]),_vm._v(" "),_c('transition',{attrs:{"name":"zoom-in-top"},on:{"beforeEnter":_vm.handleBeforeEnter}},[_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.shown),expression:"shown"}],ref:"panel",staticClass:"v2-picker-panel-wrap v2-picker-range-panel-wrap",style:({minWidth: _vm.minWidth + 'px', top: _vm.top + 'px'})},[(_vm.shownSideBar)?_c('short-cuts',{attrs:{"shortcuts":_vm.pickerOptions.shortcuts},on:{"pick":_vm.handleShortcutPick}}):_vm._e(),_vm._v(" "),_c('div',{staticClass:"v2-picker-range-panel v2-picker-range__left-panel",style:({marginLeft: _vm.shownSideBar ? '110px' : '0'})},[_c('div',{staticClass:"v2-picker-panel__header"},[_c('div',{staticClass:"v2-picker-header__label"},[_c('span',{staticClass:"v2-picker-header__label-text",domProps:{"innerHTML":_vm._s(_vm.formatYearMonthText(1))}})]),_vm._v(" "),_c('div',{staticClass:"v2-picker-header__toggle v2-picker-header__toggle-prev"},[_c('i',{staticClass:"v2-toggle-icon v2-toggle-icon__prev-year v2-toggle-icon__left-prev-year",on:{"click":function($event){_vm.changeLeftYear(-1)}}}),_vm._v(" "),_c('i',{staticClass:"v2-toggle-icon v2-toggle-icon__prev-month v2-toggle-icon__left-prev-month",on:{"click":function($event){_vm.changeLeftMonth(-1)}}})]),_vm._v(" "),(_vm.unlinkPanels)?_c('div',{staticClass:"v2-picker-header__toggle v2-picker-header__toggle-next"},[_c('i',{class:[
'v2-toggle-icon v2-toggle-icon__next-month v2-toggle-icon__left-next-month',
{
'v2-toggle-icon-disabled': _vm.disableLinkMonth
Expand Down
Loading

0 comments on commit f554ee6

Please sign in to comment.