mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 20:58:22 +08:00
ea90c4c148
* docs: fix all style contamination * fix: update
21 lines
426 B
Vue
21 lines
426 B
Vue
<template>
|
|
<div class="example-basic">
|
|
<el-time-picker v-model="value1" placeholder="Arbitrary time">
|
|
</el-time-picker>
|
|
<el-time-picker v-model="value2" arrow-control placeholder="Arbitrary time">
|
|
</el-time-picker>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
const value1 = ref()
|
|
const value2 = ref()
|
|
</script>
|
|
|
|
<style>
|
|
.example-basic .el-date-editor {
|
|
margin: 8px;
|
|
}
|
|
</style>
|