{"id":22489815,"url":"https://github.com/Splidejs/vue-splide","last_synced_at":"2025-08-02T22:31:18.007Z","repository":{"id":40545424,"uuid":"267910191","full_name":"Splidejs/vue-splide","owner":"Splidejs","description":"The Splide component for Vue.","archived":false,"fork":false,"pushed_at":"2024-07-24T15:10:59.000Z","size":1544,"stargazers_count":328,"open_issues_count":32,"forks_count":76,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-11-27T10:04:06.131Z","etag":null,"topics":["carousel","carousel-component","slider","vue","vue-component"],"latest_commit_sha":null,"homepage":"","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/Splidejs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","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},"funding":{"github":"NaotoshiFujita"}},"created_at":"2020-05-29T16:55:20.000Z","updated_at":"2024-10-20T03:32:04.000Z","dependencies_parsed_at":"2024-01-02T23:29:34.681Z","dependency_job_id":"0f6635e1-9cf6-4b46-94c8-22cf580db590","html_url":"https://github.com/Splidejs/vue-splide","commit_stats":{"total_commits":113,"total_committers":2,"mean_commits":56.5,"dds":"0.017699115044247815","last_synced_commit":"a3657c7b63aa851ea163bde5774e3e776f504f4e"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Splidejs%2Fvue-splide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Splidejs%2Fvue-splide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Splidejs%2Fvue-splide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Splidejs%2Fvue-splide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Splidejs","download_url":"https://codeload.github.com/Splidejs/vue-splide/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228383695,"owners_count":17911329,"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":["carousel","carousel-component","slider","vue","vue-component"],"created_at":"2024-12-06T17:20:50.454Z","updated_at":"2024-12-06T17:23:11.552Z","avatar_url":"https://github.com/Splidejs.png","language":"TypeScript","funding_links":["https://github.com/sponsors/NaotoshiFujita"],"categories":["Components \u0026 Libraries","TypeScript","UI Components [🔝](#readme)"],"sub_categories":["UI Components"],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://splidejs.com\" target=\"_blank\"\u003e\n      \u003cimg width=\"70\" src=\"images/logo.svg\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://v3.vuejs.org/\" target=\"_blank\"\u003e\n      \u003cimg width=\"70\" src=\"images/vue-logo.svg\"\u003e\n  \u003c/a\u003e\n\n  \u003ch1\u003eVue Splide\u003c/h1\u003e\n\n  \u003cp\u003e\n    Vue Splide is the Vue component for the\n    \u003ca href=\"https://github.com/Splidejs/splide\"\u003eSplide\u003c/a\u003e slider/carousel.\n  \u003c/p\u003e\n\n  \u003cp\u003e\n    \u003ca href=\"https://splidejs.com/integration/vue-splide/\"\u003eGetting Started\u003c/a\u003e\n    \u003cbr\u003e\n    \u003ca href=\"https://splidejs.com/\"\u003eDemo\u003c/a\u003e\n    \u003cbr\u003e\n    \u003ca href=\"https://github.com/Splidejs/splide/discussions\"\u003eDiscussions\u003c/a\u003e\n  \u003c/p\u003e\n\u003c/div\u003e\n\n## Caveat\n\nThe latest version only supports **Vue 3**.\nYou have to use the old version (0.3.5) for Vue 2, but the Splide version is also outdated.\n\n\n## Quick Start\nGet the latest version from NPM:\n```\n$ npm install @splidejs/vue-splide\n```\n\nImport CSS and components:\n\n```vue\n\u003ctemplate\u003e\n  \u003cSplide :options=\"{ rewind: true }\" aria-label=\"Vue Splide Example\"\u003e\n    \u003cSplideSlide\u003e\n      \u003cimg src=\"image1.jpg\" alt=\"Sample 1\"\u003e\n    \u003c/SplideSlide\u003e\n    \u003cSplideSlide\u003e\n      \u003cimg src=\"image2.jpg\" alt=\"Sample 2\"\u003e\n    \u003c/SplideSlide\u003e\n  \u003c/Splide\u003e\n\u003c/template\u003e\n\n\u003cscript\u003e\nimport { Splide, SplideSlide } from '@splidejs/vue-splide';\nimport { defineComponent } from 'vue';\nimport '@splidejs/vue-splide/css';\n\nexport default defineComponent( {\n  components: { Splide, SplideSlide },\n} );\n\u003c/script\u003e\n```\n\nVisit [here](https://splidejs.com/integration/vue-splide/) for more details.\n\n\n## Support Splide\n\nPlease support the project if you like it!\n- [GitHub Sponsors](https://github.com/sponsors/NaotoshiFujita)\n\n\n## License\nVue Splide and Splide are released under the MIT license.\n© 2022 Naotoshi Fujita\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSplidejs%2Fvue-splide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FSplidejs%2Fvue-splide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSplidejs%2Fvue-splide/lists"}