mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
54 lines
1.1 KiB
Vue
54 lines
1.1 KiB
Vue
<template>
|
|
<div class="demo-date-picker">
|
|
<div class="block">
|
|
<span class="demonstration">date</span>
|
|
<el-date-picker
|
|
v-model="value1"
|
|
type="date"
|
|
placeholder="Pick a date"
|
|
:default-value="new Date(2010, 9, 1)"
|
|
/>
|
|
</div>
|
|
<div class="block">
|
|
<span class="demonstration">daterange</span>
|
|
<el-date-picker
|
|
v-model="value2"
|
|
type="daterange"
|
|
start-placeholder="Start Date"
|
|
end-placeholder="End Date"
|
|
:default-value="[new Date(2010, 9, 1), new Date(2010, 10, 1)]"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
const value1 = ref('')
|
|
const value2 = 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 .demonstration {
|
|
display: block;
|
|
color: var(--el-text-color-secondary);
|
|
font-size: 14px;
|
|
margin-bottom: 20px;
|
|
}
|
|
</style>
|