{"id":15295083,"url":"https://github.com/itzvinoth/slim-ui","last_synced_at":"2025-09-05T11:51:13.512Z","repository":{"id":41724704,"uuid":"224037692","full_name":"itzvinoth/slim-ui","owner":"itzvinoth","description":"Simple components library used for building lightweight vuejs projects","archived":false,"fork":false,"pushed_at":"2024-05-22T08:39:15.000Z","size":2874,"stargazers_count":63,"open_issues_count":23,"forks_count":8,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-24T23:20:00.459Z","etag":null,"topics":["vue","vue2","vuejs","vuejs-components"],"latest_commit_sha":null,"homepage":"https://slim-ui.netlify.com","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/itzvinoth.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-11-25T20:43:14.000Z","updated_at":"2025-05-04T01:09:50.000Z","dependencies_parsed_at":"2024-09-30T17:08:36.045Z","dependency_job_id":"a2e4da3b-a0d0-45ce-af3e-bf2bba03b687","html_url":"https://github.com/itzvinoth/slim-ui","commit_stats":null,"previous_names":["mevinoth/slim-ui"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/itzvinoth/slim-ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itzvinoth%2Fslim-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itzvinoth%2Fslim-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itzvinoth%2Fslim-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itzvinoth%2Fslim-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/itzvinoth","download_url":"https://codeload.github.com/itzvinoth/slim-ui/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itzvinoth%2Fslim-ui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273754078,"owners_count":25161912,"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","status":"online","status_checked_at":"2025-09-05T02:00:09.113Z","response_time":402,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["vue","vue2","vuejs","vuejs-components"],"created_at":"2024-09-30T17:08:33.240Z","updated_at":"2025-09-05T11:51:13.444Z","avatar_url":"https://github.com/itzvinoth.png","language":"Vue","funding_links":[],"categories":["Vue"],"sub_categories":[],"readme":"\u003ca href=\"https://zerodha.tech\"\u003e\u003cimg src=\"https://zerodha.tech/static/images/github-badge.svg\" align=\"right\" /\u003e\u003c/a\u003e\n\n# slim-ui\n\n`slim-ui` is a simple vue components library contains needed UI elements. It was developed to solve [zerodha](https://zerodha.com/)'s application frontend needs and generic enough to use in any vue projects.\n\n# Install\n\nInstall `slim-ui` with the npm or yarn. It can work with webpack and ES2015 very well.\n\n```bash\n# npm\nnpm install slim-ui\n```\n\n```bash\n# yarn\nyarn add slim-ui\n```\n\nInstall its peer dependencies.\n```bash\n# npm\nnpm install --save-dev node-sass sass-loader\n```\n\n```bash\n# yarn\nyarn add -D node-sass sass-loader\n```\n\n# Usage\n\n### Use all components\n\n```vue\nimport Vue from 'vue'\nimport SlimUI from 'slim-ui'\n\nVue.use(SlimUI)\n```\n\n### Or indiviual components\n```vue\nimport Vue from 'vue'\nimport { Button } from 'slim-ui'\n\nVue.use(Button)\n```\n\n### Module Loader\nThis is the recommended way if your application uses vue-cli or has a webpack based build with vue-loader configured. Import the components as .vue files for seamless integration within your project where path of each component is available at the \"import\" section of a component documentation.\n\n```vue\nimport { Button } from 'slim-ui';\n```\n\nIn the next step, register the component with the tag name you'd like to use.\n\n```vue\nVue.component('su-button', Button);\n```\n\nThen you'll be able to utilize the component in your application.\n\n```template\n\u003csu-button class=\"button button-blue\"\u003ePrimary\u003c/su-button\u003e\n```\n\n### Sample usage\n\n```html\n\u003cdiv id=\"app\"\u003e\n  \u003csu-button class=\"button button-blue\"\u003ePrimary\u003c/su-button\u003e\n\u003c/div\u003e\n\n\u003cscript\u003e\nimport { Button } from 'slim-ui';\n\nexport default {\n  components: {\n    'su-button': Button\n  }\n}\n\u003c/script\u003e\n```\n\n## Documentation\nSlimUI Docs are powered by VuePress and the source can be viewed [here](https://github.com/mevinoth/vp-docs).\n\n## License\nMIT\n\n## Credits\nKailash ([@knadh](https://github.com/knadh)),\nVivek ([@vividvilla](https://github.com/vividvilla))\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitzvinoth%2Fslim-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitzvinoth%2Fslim-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitzvinoth%2Fslim-ui/lists"}