如何禁用在VCalendar日期选择器中选择特定日期?

huangapple go评论57阅读模式
英文:

How can I disable selecting a particular date in a VCalendar Date Picker?

问题

如何使日期选择器范围内不可能选择相同的日期?

如何禁用在VCalendar日期选择器中选择特定日期?

如何禁用在VCalendar日期选择器中选择特定日期?

如何移除选择分钟的选项?

如何禁用在VCalendar日期选择器中选择特定日期?

我尝试使用 :minute-increment="60" 移除选择分钟的能力。

如何禁用在VCalendar日期选择器中选择特定日期?

英文:

How can I make it impossible to select the same date for a Date Picker range ?

如何禁用在VCalendar日期选择器中选择特定日期?

如何禁用在VCalendar日期选择器中选择特定日期?

And how to remove the option to select minutes?

如何禁用在VCalendar日期选择器中选择特定日期?

I tried to remove the ability to select minutes using :minute-increment="60"

如何禁用在VCalendar日期选择器中选择特定日期?

答案1

得分: 0

To disable minute selection, you can add a rule to fix them to 0.

要禁用分钟选择,您可以添加一个规则将它们固定为0。

英文:

To disable minute selection, you can add a rule to fix them to 0. See the documentation.

<template>
  <VDatePicker v-model="date" mode="dateTime" :rules="rules" />
</template>

<script setup>
import { ref } from 'vue';

const date = ref(new Date(2000, 0, 15));
const rules = {
  minutes: 0,
  seconds: 0,
  milliseconds: 0,
};
</script>

huangapple
  • 本文由 发表于 2023年5月24日 20:07:53
  • 转载请务必保留本文链接:https://go.coder-hub.com/76323354.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定