mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 20:58:22 +08:00
83 lines
1.7 KiB
Vue
83 lines
1.7 KiB
Vue
<template>
|
|
<div class="demo-date-picker">
|
|
<div class="block">
|
|
<span class="demonstration">Default</span>
|
|
<el-date-picker
|
|
v-model="value1"
|
|
type="monthrange"
|
|
range-separator="To"
|
|
start-placeholder="Start month"
|
|
end-placeholder="End month"
|
|
>
|
|
</el-date-picker>
|
|
</div>
|
|
<div class="block">
|
|
<span class="demonstration">With quick options</span>
|
|
<el-date-picker
|
|
v-model="value2"
|
|
type="monthrange"
|
|
unlink-panels
|
|
range-separator="To"
|
|
start-placeholder="Start month"
|
|
end-placeholder="End month"
|
|
:shortcuts="shortcuts"
|
|
>
|
|
</el-date-picker>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
const value1 = ref('')
|
|
const value2 = ref('')
|
|
|
|
const shortcuts = [
|
|
{
|
|
text: 'This month',
|
|
value: [new Date(), new Date()],
|
|
},
|
|
{
|
|
text: 'This year',
|
|
value: () => {
|
|
const end = new Date()
|
|
const start = new Date(new Date().getFullYear(), 0)
|
|
return [start, end]
|
|
},
|
|
},
|
|
{
|
|
text: 'Last 6 months',
|
|
value: () => {
|
|
const end = new Date()
|
|
const start = new Date()
|
|
start.setMonth(start.getMonth() - 6)
|
|
return [start, end]
|
|
},
|
|
},
|
|
]
|
|
</script>
|
|
<style scoped>
|
|
.demo-date-picker {
|
|
display: flex;
|
|
width: 100%;
|
|
padding: 0;
|
|
flex-wrap: wrap;
|
|
}
|
|
.demo-date-picker .block {
|
|
padding: 30px 0;
|
|
text-align: center;
|
|
border-right: solid 1px var(--el-border-color-base);
|
|
flex: 1;
|
|
}
|
|
.demo-date-picker .block:last-child {
|
|
border-right: none;
|
|
}
|
|
.demo-date-picker .demonstration {
|
|
display: block;
|
|
color: var(--el-text-color-secondary);
|
|
font-size: 14px;
|
|
margin-bottom: 20px;
|
|
}
|
|
</style>
|