date.vue
1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<template>
<div style="margin: 50px">
<br>
<row>
<i-col span="4">
<date-picker
style="width:200px"
placeholder="请选择日期"
:value.sync="value"
:options="options"
@on-change="change"
:format="format"
@on-open-change="change2"></date-picker>
</i-col>
<i-col span="4">
<date-picker type="year" style="width:200px" placeholder="请选择日期" :value.sync="value" :options="options"></date-picker>
</i-col>
<i-col span="4">
<date-picker type="month" style="width:200px" placeholder="请选择日期" :value.sync="value" :options="options"></date-picker>
</i-col>
</row>
</div>
</template>
<script>
export default {
data () {
return {
value: new Date(),
// value: '',
options: {
disabledDate(time) {
return time.getTime() < Date.now() - 8.64e7;
// return time && time.valueOf() < Date.now();
}
},
format: 'yyyy年MM月dd日'
}
},
computed: {},
methods: {
change (date) {
console.log(date)
},
change2 (s) {
// console.log(s)
}
}
}
</script>