{"id":15035253,"url":"https://github.com/vuepic/vue-datepicker","last_synced_at":"2025-11-17T21:02:10.969Z","repository":{"id":37315121,"uuid":"469373397","full_name":"Vuepic/vue-datepicker","owner":"Vuepic","description":"Datepicker component for Vue 3","archived":false,"fork":false,"pushed_at":"2025-05-03T18:45:27.000Z","size":27737,"stargazers_count":1626,"open_issues_count":29,"forks_count":159,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-05-11T08:38:26.060Z","etag":null,"topics":["datepicker","daterangepicker","datetime","datetimepicker","timepicker","vue","vue-datepicker","vue-datetimepicker","vue3"],"latest_commit_sha":null,"homepage":"https://vue3datepicker.com","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Vuepic.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"Vuepic","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2022-03-13T13:04:01.000Z","updated_at":"2025-05-10T12:29:21.000Z","dependencies_parsed_at":"2022-07-12T12:24:41.477Z","dependency_job_id":"29dd3244-9681-4faf-9636-d51fa8a87a97","html_url":"https://github.com/Vuepic/vue-datepicker","commit_stats":{"total_commits":1623,"total_committers":66,"mean_commits":24.59090909090909,"dds":0.05730129390018479,"last_synced_commit":"74b1fd33b5455a9edfa344652199d66c5ed9abb1"},"previous_names":[],"tags_count":119,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vuepic%2Fvue-datepicker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vuepic%2Fvue-datepicker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vuepic%2Fvue-datepicker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vuepic%2Fvue-datepicker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Vuepic","download_url":"https://codeload.github.com/Vuepic/vue-datepicker/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253820801,"owners_count":21969582,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["datepicker","daterangepicker","datetime","datetimepicker","timepicker","vue","vue-datepicker","vue-datetimepicker","vue3"],"created_at":"2024-09-24T20:27:58.908Z","updated_at":"2025-11-17T21:02:10.957Z","avatar_url":"https://github.com/Vuepic.png","language":"TypeScript","funding_links":["https://github.com/sponsors/Vuepic"],"categories":[],"sub_categories":[],"readme":"## @vuepic/vue-datepicker\n\n\n### The most complete datepicker solution for Vue 3\n\n[![License](https://img.shields.io/npm/l/@vuepic/vue-datepicker)](https://github.com/Vuepic/vue-datepicker/blob/main/LICENSE) [![npm](https://img.shields.io/npm/v/@vuepic/vue-datepicker)](https://www.npmjs.com/package/@vuepic/vue-datepicker) ![Downloads](https://img.shields.io/npm/dm/@vuepic/vue-datepicker) [![Open issues](https://img.shields.io/github/issues-raw/Vuepic/vue-datepicker)](https://github.com/Vuepic/vue-datepicker/issues) ![CI](https://img.shields.io/github/actions/workflow/status/Vuepic/vue-datepicker/node.js.yml?branch=main\u0026label=CI)\n[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=Vuepic_vue-datepicker\u0026metric=alert_status)](https://sonarcloud.io/summary/new_code?id=Vuepic_vue-datepicker)\n\n\n\n\n[DOCUMENTATION](https://vue3datepicker.com/)\n\n\n[StackBlitz Playground](https://stackblitz.com/edit/vuepic-vue-datepicker?file=src%2Fcomponents%2FPlayground.vue)\n\n## Features\n\n- Single date picker\n- Range date picker\n- Time picker\n- Month picker\n- Year picker\n- Quarter picker\n- Week picker\n- Multiple dates select\n- Multiple calendars\n- Text input\n- UTC support\n- Timezones\n- Locale support\n- Week numbers\n- Custom `v-model`\n- Dark and light theme\n- SSR support\n- Highly configurable\n- Accessible\n- Included type definitions\n\n## Install\n\n```shell\n# npm\nnpm install @vuepic/vue-datepicker\n\n# yarn\nyarn add @vuepic/vue-datepicker\n\n# pnpm\npnpm add @vuepic/vue-datepicker\n\n# bun\nbun add @vuepic/vue-datepicker\n```\n\n### Import and register component\n\n**Global**\n\n```js\nimport { createApp } from 'vue';\nimport App from './App.vue';\n\nimport { VueDatePicker } from '@vuepic/vue-datepicker';\nimport '@vuepic/vue-datepicker/dist/main.css';\n\nconst app = createApp(App);\napp.component('VueDatePicker', VueDatePicker);\n```\n\n**Local**\n\n```vue\n\u003ctemplate\u003e\n  \u003cVueDatePicker v-model=\"date\" /\u003e\n\u003c/template\u003e\n\n\u003cscript setup\u003e\n  import { ref } from 'vue';\n  import { VueDatePicker } from '@vuepic/vue-datepicker';\n  import '@vuepic/vue-datepicker/dist/main.css';\n\n  const date = ref(null);\n\u003c/script\u003e\n```\n\n## Supporting the project\n\nAs you may know, maintaining an open-source project is a very time-consuming job. Your support is very appreciated ❤️\n\nPlease ⭐️ this repository if you like the component!\n\nYou can also make a financial contribution via sponsoring this project or one time donation. [Become a sponsor](https://github.com/sponsors/Vuepic)\n\nSpecial thanks to our sponsors 🙏\n\n\u003ca href=\"https://hapio.io/\" target=\"_blank\"\u003e\n    \u003cimg src=\"https://avatars.githubusercontent.com/u/99868704?s=200\u0026v=4\" width=\"80\" alt=\"Hapio\"\u003e\n\u003c/a\u003e\n\n## Contributors\n\nThanks to all people who contributed to the project 🙏\n\n\u003ca href=\"https://github.com/Vuepic/vue-datepicker/graphs/contributors\"\u003e\n  \u003cimg src=\"https://contrib.rocks/image?repo=Vuepic/vue-datepicker\" alt=\"contributors\" /\u003e\n\u003c/a\u003e\n\n## Versioning\n\nThis project follows [SemVer](https://semver.org) specification\n\n## License\n\nCopyright © 2021-present [Vuepic](https://github.com/Vuepic)\n\n[MIT](https://github.com/Vuepic/vue-datepicker/blob/master/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvuepic%2Fvue-datepicker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvuepic%2Fvue-datepicker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvuepic%2Fvue-datepicker/lists"}