123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <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" />
- </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" />
- </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);
- 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>
|