在 Vue 2 中,Element UI 提供了 DateTimePicker 组件用于选择日期和时间。然而,如前所述,Element UI 没有官方支持 Vue 3 的版本。但在 Vue 3 中,你可以使用 Element Plus,它是 Element UI 的 Vue 3 版本,并且也提供了类似的 DateTimePicker 组件。
Vue 2 + Element UI
DateTimePicker 日期时间选择器
属性 (Attributes):
v-model
: 绑定值,为选定的日期和时间type
: 选择器类型,对于日期时间选择器,使用datetime
format
: 展示值的格式value-format
: 绑定值的格式placeholder
: 非必填项占位符default-value
: 默认日期时间值disabled
: 是否禁用选择器clearable
: 是否显示清除按钮picker-options
: 选择器的配置项,比如可选择的日期范围、时间选择步长等...
: 其他通用属性
事件 (Events):
change
: 当选择器值改变时触发blur
: 当选择器失去焦点时触发focus
: 当选择器获得焦点时触发pick
: 当选择日期或时间时触发...
: 其他通用事件
方法 (Methods):
- Element UI 的 DateTimePicker 通常不提供直接调用的方法,而是通过属性和事件来控制其行为。
示例:
<template>
<el-date-picker
v-model="dateTime"
type="datetime"
placeholder="选择日期时间"
format="yyyy-MM-dd HH:mm:ss"
value-format="x"
:picker-options="{
disabledDate(time) {
return time.getTime() < Date.now() - 8.64e7; // 禁止选择今天之前的时间
},
selectableRange: '08:30:00-18:30:00' // 限制时间选择范围
}"
@change="handleChange">
</el-date-picker>
</template>
<script>
export default {
data() {
return {
dateTime: '',
};
},
methods: {
handleChange(val) {
console.log(val);
},
},
};
</script>
Vue 3 + Element Plus
DateTimePicker 日期时间选择器
Element Plus 的 DateTimePicker 组件与 Element UI 的非常相似,但可能有一些新增或调整的功能。你应该查阅 Element Plus 的官方文档以获取最新的信息。
属性、事件和方法 的大部分与 Element UI 相同,但可能有一些新的添加或改变。
示例:
在 Vue 3 中使用 Element Plus 的 DateTimePicker 组件的示例代码如下:
<template>
<el-date-picker
v-model="dateTime"
type="datetime"
placeholder="选择日期时间"
format="yyyy-MM-dd HH:mm:ss"
value-format="timestamp"
:picker-options="{
disabledDate(time) {
return time.getTime() < Date.now() - 8.64e7;
},
selectableRange: '08:30:00-18:30:00'
}"
@change="handleChange">
</el-date-picker>
</template>
<script>
import { ref } from 'vue';
export default {
setup() {
const dateTime = ref(null);
const handleChange = (val) => {
console.log(val);
};
return {
dateTime,
handleChange,
};
},
};
</script>
在这个 Vue 3 的示例中,我们使用了 Composition API 的 ref
函数来创建响应式的 dateTime
变量,并且 handleChange
方法是一个箭头函数,它可以在 Vue 组件的 setup
函数内部被正确引用。其他的使用方式与 Vue 2 的示例类似,但请注意 Element Plus 的 value-format
属性可能使用 "timestamp"
来表示 Unix 时间戳(秒为单位),而不是 Element UI 中的 "x"
。这取决于 Element Plus 的具体实现。