New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

v-datetime-field

Package Overview
Dependencies
Maintainers
2
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

v-datetime-field

Vuetify datetime picker with input fields

latest
Source
npmnpm
Version
1.3.3
Version published
Weekly downloads
4
-77.78%
Maintainers
2
Weekly downloads
 
Created
Source

Vuetify plugin VDatetimeField

Vuetify datetime picker with input fields 📅

Features

VDatetimeField

  • Input - You can input date and time via keyboard
  • Use separately - You can use only datepicker or only timepicker
  • Masked - Time and date input masked

Requirements

  • Vuetify 2.x
  • Vue 2.x

Installation

Install package

npm install --save v-datetime-field

or

yarn add v-datetime-field

Local

component.vue

<script>
import { VDatetimeField } from 'v-datetime-field'

export default {
  components: { VDatetimeField },
}
</script>

Global

main.js

import Vue from 'vue'
import VDatetimeField from 'v-datetime-field'

Vue.use(VDatetimeField)

main.js

<v-datetime-field
  v-model="formData['date']"
  :menu-props="{ top: true }"
  :date-props="{ outlined: true, label: 'Date' }"
  :error-messages="errors"
/>

Props

NameTypeDefaultRequiredDescription
date-propsobject{}--Properties for date text input
time-propsobject{}--Properties for time text input
menu-propsobject{}--Properties for v-menu
only-datebooleanFalse--Use only datepicker
only-timebooleanFalse--Use only timepicker

Roadmap

  • Add i18n

Welcome to contribute!

License

MIT © Komarov Roman

Keywords

timepicker

FAQs

Package last updated on 07 Nov 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts