/
githubmirror
/
vuetify
Обзор
Документация
Войти
/
githubmirror
/
vuetify
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/docs/src/examples/v-date-input/prop-input-format.vue
18 строк
395 B
J-Sek
docs(VDateInput): example about `input-format` replacing old one
18 дек 2025, 17:01
18 дек 2025, 17:01
e180ce5
Код
Авторство
О чём код?
<template> <div class="d-flex justify-center"> <v-date-input v-model="model" input-format="yyyy-mm-dd" max-width="368" prefix="ISO Date:" ></v-date-input> </div> </template> <script setup> import { shallowRef } from 'vue' import { useDate } from 'vuetify' const adapter = useDate() const model = shallowRef(adapter.parseISO('2025-02-25')) </script>