Socket
Socket
Sign inDemoInstall

github.com/vuepic/vue3-date-time-picker

Package Overview
Dependencies
0
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    github.com/vuepic/vue3-date-time-picker


Version published

Readme

Source

⚠️ Important info! ⚠️

The package is moved under a new name in the new repository, please transfer to @vuepic/vue-datepicker

This repository will be archived soon.

vue3-date-time-picker

The most complete datepicker solution for Vue 3

License npm Downloads Open issues CI Release date

DOCUMENTATION

CodeSandbox Playground

Features

  • Single date picker
  • Range date picker
  • Time picker
  • Month picker
  • Text input
  • Locale support
  • Week numbers
  • Dark and light theme
  • SSR support
  • Highly configurable
  • Accessible
  • Included type definitions

Install

yarn add vue3-date-time-picker

# or

npm install vue3-date-time-picker

Import and register component

Global

import { createApp } from 'vue';
import App from './App.vue';

import Datepicker from 'vue3-date-time-picker';
import 'vue3-date-time-picker/dist/main.css';

const app = createApp(App);
app.component('Datepicker', Datepicker);

Local

<script>
    import Datepicker from 'vue3-date-time-picker';
    import 'vue3-date-time-picker/dist/main.css';
    
    export default {
        components: { Datepicker }
    }
</script>

Supporting the project

As you may know, maintaining an open-source project is a very time-consuming job. Your support is very appreciated ❤️

Please ⭐️ this repository if you like the component!

You can also make a financial contribution via sponsoring this project or one time donation. Become a sponsor

Special thanks to our sponsors 🙏

Hapio

License

Copyright © 2021-present Vuepic

MIT

FAQs

Last updated on 19 Mar 2022

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc