mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* docs: improve examples layout for narrow screens * docs: style related * style: [statistic] use utilities * style: [input] remove deep * style: [transitions] change style * refactor: [date-picker-panel] narrow refactor
107 lines
2.3 KiB
Vue
107 lines
2.3 KiB
Vue
<template>
|
||
<div class="demo-date-picker">
|
||
<div class="block">
|
||
<span class="demonstration">Emits Date object</span>
|
||
<div class="demonstration">Value: {{ value1 }}</div>
|
||
<el-date-picker
|
||
v-model="value1"
|
||
type="date"
|
||
placeholder="Pick a Date"
|
||
format="YYYY/MM/DD"
|
||
/>
|
||
</div>
|
||
<div class="block">
|
||
<span class="demonstration">Use value-format</span>
|
||
<div class="demonstration">Value:{{ value2 }}</div>
|
||
<el-date-picker
|
||
v-model="value2"
|
||
type="date"
|
||
placeholder="Pick a Date"
|
||
format="YYYY/MM/DD"
|
||
value-format="YYYY-MM-DD"
|
||
/>
|
||
</div>
|
||
<div class="block">
|
||
<span class="demonstration">Timestamp</span>
|
||
<div class="demonstration">Value:{{ value3 }}</div>
|
||
<el-date-picker
|
||
v-model="value3"
|
||
type="date"
|
||
placeholder="Pick a Date"
|
||
format="YYYY/MM/DD"
|
||
value-format="x"
|
||
/>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="ts" setup>
|
||
import { ref } from 'vue'
|
||
|
||
const value1 = ref('')
|
||
const value2 = ref('')
|
||
const value3 = ref('')
|
||
</script>
|
||
|
||
<style scoped>
|
||
.demo-date-picker {
|
||
display: flex;
|
||
width: 100%;
|
||
padding: 0;
|
||
flex-wrap: wrap;
|
||
}
|
||
|
||
.demo-date-picker .block {
|
||
padding: 1.5rem 0;
|
||
text-align: center;
|
||
border-right: solid 1px var(--el-border-color);
|
||
flex: 1;
|
||
min-width: 300px;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
}
|
||
|
||
.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: 1rem;
|
||
width: 100%;
|
||
}
|
||
|
||
@media screen and (max-width: 1200px) {
|
||
.demo-date-picker .block {
|
||
flex: 0 0 50%;
|
||
border-bottom: solid 1px var(--el-border-color);
|
||
}
|
||
|
||
.demo-date-picker .block:nth-child(2n) {
|
||
border-right: none;
|
||
}
|
||
|
||
.demo-date-picker .block:nth-last-child(-n + 2):nth-child(2n + 1),
|
||
.demo-date-picker .block:last-child {
|
||
border-bottom: none;
|
||
}
|
||
}
|
||
|
||
@media screen and (max-width: 768px) {
|
||
.demo-date-picker .block {
|
||
flex: 0 0 100%;
|
||
padding: 1rem 0;
|
||
min-width: auto;
|
||
border-right: none;
|
||
border-bottom: solid 1px var(--el-border-color);
|
||
}
|
||
|
||
.demo-date-picker .block:last-child {
|
||
border-bottom: none;
|
||
}
|
||
}
|
||
</style>
|