Home

Awesome

@vuepic/vue-datepicker

The most complete datepicker solution for Vue 3

License npm Downloads Open issues CI Quality Gate Status

DOCUMENTATION

StackBlitz Playground

Features

Install

# npm
npm install @vuepic/vue-datepicker

# yarn
yarn add @vuepic/vue-datepicker

# pnpm
pnpm add @vuepic/vue-datepicker

# bun
bun add @vuepic/vue-datepicker

Import and register component

Global

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

import VueDatePicker from '@vuepic/vue-datepicker';
import '@vuepic/vue-datepicker/dist/main.css';

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

Local

<template>
  <VueDatePicker v-model="date" />
</template>

<script setup>
  import { ref } from 'vue';
  import VueDatePicker from '@vuepic/vue-datepicker';
  import '@vuepic/vue-datepicker/dist/main.css';

  const date = ref(null);
</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 🙏

<a href="https://hapio.io/" target="_blank"> <img src="https://avatars.githubusercontent.com/u/99868704?s=200&v=4" width="80" alt="Hapio"> </a> <a href="https://datagridvue.com/" target="_blank"> <img src="https://raw.githubusercontent.com/nruffing/data-grid-vue/049baf296f814e3b03faf48632a7508305e14ffc/vuepress/.vuepress/public/favicon.svg" width="80" alt="Data Grid Vue "> </a>

Contributors

Thanks to all people who contributed to the project 🙏

<a href="https://github.com/Vuepic/vue-datepicker/graphs/contributors"> <img src="https://contrib.rocks/image?repo=Vuepic/vue-datepicker" alt="contributors" /> </a>

Versioning

This project follows SemVer specification

License

Copyright © 2021-present Vuepic

MIT