@monoui/vuejs 1.1.60 → 1.1.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +2 -2
- package/package.json +1 -1
- package/src/components/Date/DatePicker.vue +2 -12
package/package.json
CHANGED
|
@@ -97,13 +97,8 @@ export default {
|
|
|
97
97
|
let date2 = moment(this.value[1]).toDate();
|
|
98
98
|
return [date1, date2];
|
|
99
99
|
} else {
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
return date;
|
|
103
|
-
} else {
|
|
104
|
-
let date = moment(this.value).toDate();
|
|
105
|
-
return date;
|
|
106
|
-
}
|
|
100
|
+
let date = moment(this.value).toDate();
|
|
101
|
+
return date;
|
|
107
102
|
}
|
|
108
103
|
},
|
|
109
104
|
set: function(value) {
|
|
@@ -263,11 +258,6 @@ export default {
|
|
|
263
258
|
* shortcuts.
|
|
264
259
|
* Allows to determine shortcuts when shortcutsEnable property is true
|
|
265
260
|
*/
|
|
266
|
-
isUTC: {
|
|
267
|
-
type: Boolean,
|
|
268
|
-
required: false,
|
|
269
|
-
default: false
|
|
270
|
-
},
|
|
271
261
|
shortcuts: {
|
|
272
262
|
type: Array,
|
|
273
263
|
default: () => {
|