{"id":19157036,"url":"https://github.com/antonreshetov/vue-glide","last_synced_at":"2025-04-04T16:13:11.475Z","repository":{"id":53143951,"uuid":"141993206","full_name":"antonreshetov/vue-glide","owner":"antonreshetov","description":"A slider and carousel as vue component on top of the Glide.js","archived":false,"fork":false,"pushed_at":"2021-04-04T19:15:52.000Z","size":1025,"stargazers_count":264,"open_issues_count":32,"forks_count":39,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-28T15:07:42.190Z","etag":null,"topics":["carousel","component","glide","slider","vue","vue-components","vuejs"],"latest_commit_sha":null,"homepage":"https://antonreshetov.github.io/vue-glide/","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/antonreshetov.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},"funding":{"github":null,"patreon":"antonreshetov","ko_fi":"antonreshetov","custom":["https://paypal.me/antonreshetov"]}},"created_at":"2018-07-23T09:36:19.000Z","updated_at":"2025-02-28T03:02:38.000Z","dependencies_parsed_at":"2022-08-13T02:20:22.879Z","dependency_job_id":null,"html_url":"https://github.com/antonreshetov/vue-glide","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonreshetov%2Fvue-glide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonreshetov%2Fvue-glide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonreshetov%2Fvue-glide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonreshetov%2Fvue-glide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/antonreshetov","download_url":"https://codeload.github.com/antonreshetov/vue-glide/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247208139,"owners_count":20901570,"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","component","glide","slider","vue","vue-components","vuejs"],"created_at":"2024-11-09T08:37:50.341Z","updated_at":"2025-04-04T16:13:11.446Z","avatar_url":"https://github.com/antonreshetov.png","language":"JavaScript","funding_links":["https://patreon.com/antonreshetov","https://ko-fi.com/antonreshetov","https://paypal.me/antonreshetov"],"categories":["Components \u0026 Libraries","UI Components","UI Components [🔝](#readme)"],"sub_categories":["UI Components","Carousel"],"readme":"\u003ch1 align=\"center\"\u003eVue Glide\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://img.shields.io/npm/v/vue-glide-js.svg\"\u003e\n  \u003cimg src=\"https://img.shields.io/github/issues/antonreshetov/vue-glide.svg\"\u003e\n  \u003cimg src=\"https://img.shields.io/npm/dw/vue-glide-js.svg\"\u003e\n  \u003cimg alt=\"npm bundle size\" src=\"https://img.shields.io/bundlephobia/minzip/vue-glide-js.svg\"\u003e\n  \u003cimg src=\"https://travis-ci.com/antonreshetov/vue-glide.svg?branch=master\"\u003e\n  \u003cimg src=\"https://img.shields.io/github/license/antonreshetov/vue-glide.svg\"\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003eVue component on top of the \u003ca href=\"https://github.com/glidejs/glide\"\u003eGlide.js\u003c/a\u003e\u003c/p\u003e\n\n\u003cimg src=\"./docs/hero.png\"\u003e\n\n## Documentation\n\n[https://antonreshetov.github.io/vue-glide](https://antonreshetov.github.io/vue-glide/)\n\n## Install\n\n### NPM\n\nInstalling with npm is recommended and it works seamlessly with webpack.\n\n```bash\nnpm i vue-glide-js\n```\n\n### Download\n\nYou can download latest version from the Github: [Download](https://github.com/antonreshetov/vue-glide/archive/master.zip)\n\n## Quick Start\n\n### Global\n\nTo use in your project, just import vue-glide and install into Vue.\n\n```js\nimport Vue from 'vue'\nimport App from './App.vue'\nimport VueGlide from 'vue-glide-js'\nimport 'vue-glide-js/dist/vue-glide.css'\n\nVue.use(VueGlide)\n\nnew Vue({\n  el: '#app',\n  render: h =\u003e h(App)\n})\n```\n\n### On demand\n\n```html\n\u003ctemplate\u003e\n  \u003cdiv id=\"app\"\u003e\n    \u003cvue-glide\u003e\n      \u003cvue-glide-slide v-for=\"i in 10\" :key=\"i\"\u003e\n        Slide {{ i }}\n      \u003c/vue-glide-slide\u003e\n    \u003c/vue-glide\u003e\n  \u003c/div\u003e\n\u003c/template\u003e\n\n\u003cscript\u003e\n  import { Glide, GlideSlide } from 'vue-glide-js'\n\n  export default {\n    components: {\n      [Glide.name]: Glide,\n      [GlideSlide.name]: GlideSlide\n    }\n  }\n\u003c/script\u003e\n```\n\n## License\n\nMIT © 2018-present [Anton Reshetov](http://antonreshetov.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantonreshetov%2Fvue-glide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fantonreshetov%2Fvue-glide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantonreshetov%2Fvue-glide/lists"}