1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <template>
- <div class="block">
- <span class="demonstration">Default</span>
- <el-date-picker
- v-model="value1"
- type="datetimerange"
- range-separator="To"
- start-placeholder="Start date"
- end-placeholder="End date"
- />
- </div>
- <div class="block">
- <span class="demonstration">With shortcuts</span>
- <el-date-picker
- v-model="value2"
- type="datetimerange"
- :shortcuts="shortcuts"
- range-separator="To"
- start-placeholder="Start date"
- end-placeholder="End date"
- />
- </div>
- </template>
- <script lang="ts" setup>
- import { ref } from 'vue'
- const value1 = ref<[Date, Date]>([
- new Date(2000, 10, 10, 10, 10),
- new Date(2000, 10, 11, 10, 10),
- ])
- const value2 = ref('')
- const shortcuts = [
- {
- text: 'Last week',
- value: () => {
- const end = new Date()
- const start = new Date()
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 7)
- return [start, end]
- },
- },
- {
- text: 'Last month',
- value: () => {
- const end = new Date()
- const start = new Date()
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 30)
- return [start, end]
- },
- },
- {
- text: 'Last 3 months',
- value: () => {
- const end = new Date()
- const start = new Date()
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 90)
- return [start, end]
- },
- },
- ]
- </script>
- <style scoped>
- .block {
- padding: 30px 0;
- text-align: center;
- border-right: solid 1px var(--el-border-color);
- flex: 1;
- }
- .block:last-child {
- border-right: none;
- }
- .block .demonstration {
- display: block;
- color: var(--el-text-color-secondary);
- font-size: 14px;
- margin-bottom: 20px;
- }
- </style>
|