1
0
This commit is contained in:
syuilo
2018-02-19 23:37:09 +09:00
parent 55273807d2
commit 69a8e4f4b2
40 changed files with 356 additions and 303 deletions
@@ -47,7 +47,7 @@ export default Vue.extend({
default: 0
},
start: {
type: Object,
type: Date,
required: false
}
},
@@ -94,7 +94,7 @@ export default Vue.extend({
isOutOfRange(day) {
const test = (new Date(this.year, this.month - 1, day)).getTime();
return test > this.today.getTime() ||
(this.start ? test < this.start.getTime() : false);
(this.start ? test < (this.start as any).getTime() : false);
},
isDonichi(day) {