{"id":17807448,"url":"https://github.com/subotkevic/videl","last_synced_at":"2025-07-04T08:05:18.590Z","repository":{"id":57392147,"uuid":"85692401","full_name":"subotkevic/videl","owner":"subotkevic","description":"Videl – Component Framework for Vue2.","archived":false,"fork":false,"pushed_at":"2017-03-28T11:46:24.000Z","size":290,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-10T18:28:48.708Z","etag":null,"topics":["css","flexbox","framework","frontend","frontend-framework","js","vue2"],"latest_commit_sha":null,"homepage":"","language":"Vue","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/subotkevic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-03-21T11:10:22.000Z","updated_at":"2017-03-27T00:05:28.000Z","dependencies_parsed_at":"2022-09-26T17:00:22.963Z","dependency_job_id":null,"html_url":"https://github.com/subotkevic/videl","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/subotkevic/videl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subotkevic%2Fvidel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subotkevic%2Fvidel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subotkevic%2Fvidel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subotkevic%2Fvidel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/subotkevic","download_url":"https://codeload.github.com/subotkevic/videl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subotkevic%2Fvidel/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261162065,"owners_count":23118221,"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":["css","flexbox","framework","frontend","frontend-framework","js","vue2"],"created_at":"2024-10-27T14:04:27.822Z","updated_at":"2025-07-04T08:05:18.561Z","avatar_url":"https://github.com/subotkevic.png","language":"Vue","readme":"\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://www.npmjs.com/package/videl\"\u003e\u003cimg src=\"https://img.shields.io/npm/dt/videl.svg\" alt=\"Downloads\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://www.npmjs.com/package/videl\"\u003e\u003cimg src=\"https://img.shields.io/npm/v/videl.svg\" alt=\"Version\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://www.npmjs.com/package/videl\"\u003e\u003cimg src=\"https://img.shields.io/npm/l/videl.svg\" alt=\"License\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n# Videl\n\n**Videl** is a component framework for Vue2. Based on [Bulma](http://bulma.io).\n\n## Install\n\n``` bash\nnpm install videl --save-dev\n```\n\n## Use\n\n\u003e Make sure to include the **dist/videl.min.css** file as the styles have been extracted into a single CSS file.\n\n```javascript\nimport 'Vue' from 'vue'\nimport 'Videl' from 'videl'\n\nVue.use(Videl)\n```\n\n## Install via CDN\n\n``` html\n\u003clink rel=\"stylesheet\" href=\"https://unpkg.com/videl/dist/videl.min.css\"\u003e\n\n\u003cscript src=\"https://unpkg.com/vue/dist/vue.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"https://unpkg.com/videl/dist/videl.min.js\"\u003e\u003c/script\u003e\n```\n\n## Example\n\n``` html\n\u003c!DOCTYPE html\u003e\n\u003chtml\u003e\n    \u003chead\u003e\n        \u003clink rel=\"stylesheet\" href=\"https://unpkg.com/videl/dist/videl.min.css\"\u003e\n\n        \u003ctitle\u003eVidel example\u003c/title\u003e\n    \u003c/head\u003e\n\n    \u003cbody\u003e\n        \u003cdiv id=\"app\"\u003e\n\n            \u003c!-- Container --\u003e\n            \u003cvd-container\u003e\n            \n                \u003c!-- Box --\u003e\n                \u003cvd-box\u003eHello World!\u003c/vd-box\u003e\n                \n                \u003c!-- Button --\u003e\n                \u003cvd-button\u003eThis is awesome!\u003c/vd-button\u003e\n                \n            \u003c/vd-container\u003e\n            \n        \u003c/div\u003e\n\n        \u003c!-- Scripts --\u003e\n        \u003cscript src=\"https://unpkg.com/vue/dist/vue.js\"\u003e\u003c/script\u003e\n        \u003cscript src=\"https://unpkg.com/videl/dist/videl.min.js\"\u003e\u003c/script\u003e\n        \n        \u003cscript\u003e\n            new Vue({\n                el: '#app'\n            })\n        \u003c/script\u003e\n    \u003c/body\u003e\n\u003c/html\u003e\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsubotkevic%2Fvidel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsubotkevic%2Fvidel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsubotkevic%2Fvidel/lists"}