1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <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>
|