mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
dbfa93bab1
* feat(components): [date-picker] `type` add `months` params closed #17317 * feat(components): [date-picker] optimized code * docs(components): [date-picker] enhanced multiple selection example * test(components): [date-picker] add test --------- Co-authored-by: Panzer_Jack <shenchang@bilibili.com>
113 lines
2.4 KiB
Vue
113 lines
2.4 KiB
Vue
<template>
|
|
<div class="demo-date-picker">
|
|
<div class="container">
|
|
<div class="block">
|
|
<span class="demonstration">Week</span>
|
|
<el-date-picker
|
|
v-model="value1"
|
|
type="week"
|
|
format="[Week] ww"
|
|
placeholder="Pick a week"
|
|
/>
|
|
</div>
|
|
<div class="block">
|
|
<span class="demonstration">Dates</span>
|
|
<el-date-picker
|
|
v-model="value2"
|
|
type="dates"
|
|
placeholder="Pick one or more dates"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="container">
|
|
<div class="block">
|
|
<span class="demonstration">Year</span>
|
|
<el-date-picker
|
|
v-model="value3"
|
|
type="year"
|
|
placeholder="Pick a year"
|
|
/>
|
|
</div>
|
|
<div class="block">
|
|
<span class="demonstration">Years</span>
|
|
<el-date-picker
|
|
v-model="value4"
|
|
type="years"
|
|
placeholder="Pick one or more years"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="container">
|
|
<div class="block">
|
|
<span class="demonstration">Month</span>
|
|
<el-date-picker
|
|
v-model="value5"
|
|
type="month"
|
|
placeholder="Pick a month"
|
|
/>
|
|
</div>
|
|
<div class="block">
|
|
<span class="demonstration">Months</span>
|
|
<el-date-picker
|
|
v-model="value6"
|
|
type="months"
|
|
placeholder="Pick one or more months"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
const value1 = ref('')
|
|
const value2 = ref('')
|
|
const value3 = ref('')
|
|
const value4 = ref('')
|
|
const value5 = ref('')
|
|
const value6 = ref('')
|
|
</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 .container {
|
|
flex: 1;
|
|
border-right: solid 1px var(--el-border-color);
|
|
}
|
|
|
|
.demo-date-picker .container .block {
|
|
border-right: none;
|
|
}
|
|
|
|
.demo-date-picker .container .block:last-child {
|
|
border-top: solid 1px var(--el-border-color);
|
|
}
|
|
|
|
.demo-date-picker .container:last-child {
|
|
border-right: none;
|
|
}
|
|
|
|
.demo-date-picker .demonstration {
|
|
display: block;
|
|
color: var(--el-text-color-secondary);
|
|
font-size: 14px;
|
|
margin-bottom: 20px;
|
|
}
|
|
</style>
|