mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
63 lines
1.4 KiB
Vue
63 lines
1.4 KiB
Vue
|
<template>
|
||
|
<div class="demo-date-picker">
|
||
|
<div class="block">
|
||
|
<span class="demonstration">Default</span>
|
||
|
<el-date-picker v-model="value1" type="date" placeholder="Pick a day">
|
||
|
</el-date-picker>
|
||
|
</div>
|
||
|
<div class="block">
|
||
|
<span class="demonstration">Picker with quick options</span>
|
||
|
<el-date-picker
|
||
|
v-model="value2"
|
||
|
type="date"
|
||
|
placeholder="Pick a day"
|
||
|
:disabled-date="disabledDate"
|
||
|
:shortcuts="shortcuts"
|
||
|
>
|
||
|
</el-date-picker>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent, reactive, toRefs } from 'vue'
|
||
|
|
||
|
export default defineComponent({
|
||
|
setup() {
|
||
|
const state = reactive({
|
||
|
disabledDate(time) {
|
||
|
return time.getTime() > Date.now()
|
||
|
},
|
||
|
shortcuts: [
|
||
|
{
|
||
|
text: 'Today',
|
||
|
value: new Date(),
|
||
|
},
|
||
|
{
|
||
|
text: 'Yesterday',
|
||
|
value: () => {
|
||
|
const date = new Date()
|
||
|
date.setTime(date.getTime() - 3600 * 1000 * 24)
|
||
|
return date
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
text: 'A week ago',
|
||
|
value: () => {
|
||
|
const date = new Date()
|
||
|
date.setTime(date.getTime() - 3600 * 1000 * 24 * 7)
|
||
|
return date
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
value1: '',
|
||
|
value2: '',
|
||
|
})
|
||
|
|
||
|
return {
|
||
|
...toRefs(state),
|
||
|
}
|
||
|
},
|
||
|
})
|
||
|
</script>
|