{"id":13991683,"url":"https://github.com/fullcalendar/fullcalendar-vue","last_synced_at":"2025-05-13T20:21:36.778Z","repository":{"id":37664643,"uuid":"178247472","full_name":"fullcalendar/fullcalendar-vue","owner":"fullcalendar","description":"The official Vue 3 component for FullCalendar","archived":false,"fork":false,"pushed_at":"2025-04-02T13:56:33.000Z","size":927,"stargazers_count":1468,"open_issues_count":2,"forks_count":86,"subscribers_count":21,"default_branch":"main","last_synced_at":"2025-04-09T17:18:35.401Z","etag":null,"topics":["calendar","event","full-size","fullcalendar","vue","vue3"],"latest_commit_sha":null,"homepage":"https://fullcalendar.io/docs/vue","language":"JavaScript","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/fullcalendar.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-03-28T16:59:31.000Z","updated_at":"2025-04-08T22:13:08.000Z","dependencies_parsed_at":"2023-09-22T04:38:15.695Z","dependency_job_id":"40ac5cb0-6a70-40eb-acaf-8c9d0e1a8794","html_url":"https://github.com/fullcalendar/fullcalendar-vue","commit_stats":{"total_commits":443,"total_committers":3,"mean_commits":"147.66666666666666","dds":0.009029345372460473,"last_synced_commit":"e84273c81d77dceddabbf01901391af54971b609"},"previous_names":[],"tags_count":77,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fullcalendar%2Ffullcalendar-vue","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fullcalendar%2Ffullcalendar-vue/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fullcalendar%2Ffullcalendar-vue/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fullcalendar%2Ffullcalendar-vue/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fullcalendar","download_url":"https://codeload.github.com/fullcalendar/fullcalendar-vue/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248074922,"owners_count":21043490,"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":["calendar","event","full-size","fullcalendar","vue","vue3"],"created_at":"2024-08-09T14:01:31.601Z","updated_at":"2025-04-09T17:18:43.341Z","avatar_url":"https://github.com/fullcalendar.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"\n# FullCalendar Vue 3 Component\n\nThe official [Vue 3](https://vuejs.org/) component for [FullCalendar](https://fullcalendar.io)\n\n## Installation\n\nInstall the Vue 3 connector, the core package, and any plugins (like [daygrid](https://fullcalendar.io/docs/month-view)):\n\n```sh\nnpm install @fullcalendar/vue3 @fullcalendar/core @fullcalendar/daygrid\n```\n\n## Usage\n\nRender a `FullCalendar` component, supplying an [options](https://fullcalendar.io/docs#toc) object:\n\n```vue\n\u003cscript\u003e\nimport FullCalendar from '@fullcalendar/vue3'\nimport dayGridPlugin from '@fullcalendar/daygrid'\n\nexport default {\n  components: {\n    FullCalendar // make the \u003cFullCalendar\u003e tag available\n  },\n  data: function() {\n    return {\n      calendarOptions: {\n        plugins: [dayGridPlugin],\n        initialView: 'dayGridMonth',\n        weekends: false,\n        events: [\n          { title: 'Meeting', start: new Date() }\n        ]\n      }\n    }\n  }\n}\n\u003c/script\u003e\n\n\u003ctemplate\u003e\n  \u003ch1\u003eDemo App\u003c/h1\u003e\n  \u003cFullCalendar :options='calendarOptions' /\u003e\n\u003c/template\u003e\n```\n\nYou can even supply [named-slot](https://vuejs.org/guide/components/slots.html#named-slots) templates:\n\n```vue\n\u003ctemplate\u003e\n  \u003ch1\u003eDemo App\u003c/h1\u003e\n  \u003cFullCalendar :options='calendarOptions'\u003e\n    \u003ctemplate v-slot:eventContent='arg'\u003e\n      \u003cb\u003e{{ arg.timeText }}\u003c/b\u003e\n      \u003ci\u003e{{ arg.event.title }}\u003c/i\u003e\n    \u003c/template\u003e\n  \u003c/FullCalendar\u003e\n\u003c/template\u003e\n```\n\n## Links\n\n- [Documentation](https://fullcalendar.io/docs/vue)\n- [Example Project](https://github.com/fullcalendar/fullcalendar-examples/tree/main/vue3)\n\n## Development\n\nYou must install this repo with [PNPM](https://pnpm.io/):\n\n```\npnpm install\n```\n\nAvailable scripts (via `pnpm run \u003cscript\u003e`):\n\n- `build` - build production-ready dist files\n- `dev` - build \u0026 watch development dist files\n- `test` - test headlessly\n- `test:dev` - test interactively\n- `clean`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffullcalendar%2Ffullcalendar-vue","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffullcalendar%2Ffullcalendar-vue","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffullcalendar%2Ffullcalendar-vue/lists"}