{"id":25195983,"url":"https://github.com/simplisticated/vootstrap","last_synced_at":"2025-06-10T17:36:37.276Z","repository":{"id":140530621,"uuid":"187906597","full_name":"simplisticated/Vootstrap","owner":"simplisticated","description":"Great combination of Vue and Bootstrap","archived":false,"fork":false,"pushed_at":"2019-05-24T20:18:05.000Z","size":30,"stargazers_count":39,"open_issues_count":0,"forks_count":4,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-05-08T19:46:26.535Z","etag":null,"topics":["bootstrap","frontend","hybrid-app","javascript","vue"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/simplisticated.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2019-05-21T20:12:06.000Z","updated_at":"2022-05-03T06:05:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"dfc49501-c785-4c90-bf31-0485df7adcb0","html_url":"https://github.com/simplisticated/Vootstrap","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplisticated%2FVootstrap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplisticated%2FVootstrap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplisticated%2FVootstrap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplisticated%2FVootstrap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simplisticated","download_url":"https://codeload.github.com/simplisticated/Vootstrap/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplisticated%2FVootstrap/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259118546,"owners_count":22808005,"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":["bootstrap","frontend","hybrid-app","javascript","vue"],"created_at":"2025-02-10T01:39:22.601Z","updated_at":"2025-06-10T17:36:37.266Z","avatar_url":"https://github.com/simplisticated.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eVue + Bootstrap = Vootstrap\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://http://www.android.com\"\u003e\n\t\t\u003cimg src=\"https://img.shields.io/badge/Written%20in-JavaScript-orange.svg?style=flat\"\u003e\n\t\u003c/a\u003e\n\t\u003ca href=\"https://tldrlegal.com/license/apache-license-2.0-(apache-2.0)\"\u003e\n\t\t\u003cimg src=\"https://img.shields.io/badge/License-Apache 2.0-blue.svg?style=flat\"\u003e\n\t\u003c/a\u003e\n\u003c/p\u003e\n\n## 👓 At a Glance\n\n`Vootstrap` is a collection of [Vue.js](https://vuejs.org) components with [Bootstrap](https://getbootstrap.com) under the hood.\n\nWhile `Vootstrap` is a carefully thought-out combination of `Vue` and `Bootstrap` frameworks, it gives you an incredible simplicity and makes your frontend programming experience much more enjoyable 🎉\n\nIt works well for both websites and hybrid mobile apps. You can use popular components from `Bootstrap` filled with the power of reactive programming given by `Vue`.\n\nThe main advantage of `Vootstrap` is the syntax. The entire library is built with keeping in mind the idea of unbelievable flexibility. It's easy enough for beginners and helpful for experienced developers.\n\n## 🚀 How to Get Started\n\nCopy [vootstrap.js](vootstrap.js) to your project.\n\n## ✔ Requirements\n\n- [Vue.js](https://vuejs.org)\n- [Bootstrap](https://getbootstrap.com)\n\n## ⌨ Usage\n\nEach `Vootstrap` component is actually an HTML tag that you can simply put into your layout.\n\n**For now, [Button](#buttons) is the only component supported by `Vootstrap`. New components will be supported soon.**\n\nAlso, take a look at [demo app](demo/index.html) which gives the base understanding of amazing `Vootstrap` principles.\n\n### Buttons\n\nSimple primary button:\n\n```html\n\u003cvt-button-primary title=\"My button\"\u003e\u003c/vt-button-primary\u003e\n```\n\nThe same button outlined:\n\n```html\n\u003cvt-button-primary-outline title=\"My button\"\u003e\u003c/vt-button-primary-outline\u003e\n```\n\nYou can also change the size:\n\n```html\n\u003cvt-button-success-outline-small title=\"Small button\"\u003e\u003c/vt-button-success-outline-small\u003e\n\u003cvt-button-warning-outline-large title=\"Large button\"\u003e\u003c/vt-button-warning-outline-large\u003e\n```\n\nOne of the fundamental `Vootstrap` features is ability to swap tag name components. All the examples below are correct:\n\n```html\n\u003cvt-button-primary-outline-large title=\"My button\"\u003e\u003c/vt-button-primary-outline-large\u003e\n\u003cvt-button-primary-large-outline title=\"My button\"\u003e\u003c/vt-button-primary-large-outline\u003e\n\u003cvt-button-outline-primary-large title=\"My button\"\u003e\u003c/vt-button-outline-primary-large\u003e\n\u003cvt-button-primary-large title=\"My button\"\u003e\u003c/vt-button-primary-large\u003e\n\u003cvt-button-large-primary title=\"My button\"\u003e\u003c/vt-button-large-primary\u003e\n```\n\nSo you don't need to use CSS classes like `btn-primary`, `btn-lg`, etc. Just put button's style information into the tag and use it like a regular button.\n\n## ⚖ License\n\n`Vootstrap` is available under the Apache 2.0 license. See the [LICENSE](./LICENSE) file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplisticated%2Fvootstrap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimplisticated%2Fvootstrap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplisticated%2Fvootstrap/lists"}