{"id":14973685,"url":"https://github.com/aliqin/atui","last_synced_at":"2025-05-16T00:05:26.302Z","repository":{"id":57194962,"uuid":"67322640","full_name":"aliqin/atui","owner":"aliqin","description":"A Vue.js 2.0 UI Toolkit for Web","archived":false,"fork":false,"pushed_at":"2024-04-23T01:29:43.000Z","size":91060,"stargazers_count":667,"open_issues_count":6,"forks_count":58,"subscribers_count":45,"default_branch":"dev","last_synced_at":"2025-05-09T10:46:25.320Z","etag":null,"topics":["javascript","ui-components","ui-kit","ui-toolkit","vue","vue-components","vue2"],"latest_commit_sha":null,"homepage":"https://aliqin.github.io/atui","language":"Less","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/aliqin.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"AUTHORS.txt","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-09-04T03:00:38.000Z","updated_at":"2025-03-19T09:06:09.000Z","dependencies_parsed_at":"2024-06-19T00:23:36.077Z","dependency_job_id":"1f55f4fc-5cad-42c3-856d-1f0e3c68200d","html_url":"https://github.com/aliqin/atui","commit_stats":{"total_commits":1103,"total_committers":17,"mean_commits":64.88235294117646,"dds":0.5013599274705349,"last_synced_commit":"8060e06ce53fb5807ae553aa5ad5ba34433a5902"},"previous_names":[],"tags_count":43,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aliqin%2Fatui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aliqin%2Fatui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aliqin%2Fatui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aliqin%2Fatui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aliqin","download_url":"https://codeload.github.com/aliqin/atui/tar.gz/refs/heads/dev","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254442854,"owners_count":22071878,"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":["javascript","ui-components","ui-kit","ui-toolkit","vue","vue-components","vue2"],"created_at":"2024-09-24T13:49:14.154Z","updated_at":"2025-05-16T00:05:26.260Z","avatar_url":"https://github.com/aliqin.png","language":"Less","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/aliqin/atui\" target=\"blank\"\u003e\u003cimg src=\"http://img.alicdn.com/tps/TB16WYGPFXXXXX4XXXXXXXXXXXX-400-172.png\" /\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n如果你有Vue组件建设经验，欢迎你[加入我们一起完善ATUI](https://zhuanlan.zhihu.com/p/23035940)\n\n# ATUI\n[![Build Status](https://travis-ci.org/aliqin/atui.svg?branch=dev)](https://travis-ci.org/aliqin/atui)\n[![codecov](https://codecov.io/gh/aliqin/atui/branch/dev/graph/badge.svg)](https://codecov.io/gh/aliqin/atui/branch/dev)\n[![NPM download][npmdl-image]][npm-url]\n[![NPM version][npm-image]][npm-url]\n[![gzip size:JS][gzipjs-image]][npm-url]\n[![gzip size:css][gzipcss-image]][npm-url]\n[![license][license-image]][npm-url]\n[![Gitter](https://badges.gitter.im/aliqin/atui.svg)](https://gitter.im/aliqin/atui?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge)\n\n[npmdl-image]: https://img.shields.io/npm/dm/atui.svg\n[npm-image]: https://img.shields.io/npm/v/atui.svg?style=flat\n[gzipjs-image]: http://img.badgesize.io/https://unpkg.com/atui/dist/atui.js?compression=gzip\u0026label=gzip%20size:%20JS\n[gzipcss-image]: http://img.badgesize.io/https://unpkg.com/atui/dist/greater-blue.css?compression=gzip\u0026label=gzip%20size:%20CSS\n[npm-url]: https://www.npmjs.com/package/atui\n[license-image]: https://img.shields.io/badge/license-MIT-blue.svg\n\n\u003e A Vue.js 2.0 UI Toolkit for Web\n\nrequire [Vue.js](http://vuejs.org/) `\u003e=v2.1.4`\n\n--------\n\n\n\n\n\n## Install\n\n```bash\n$ npm install atui --save-dev\n```\n\n\n## Quick Start\n```js\n\n// css\nimport 'atui/dist/greater-blue.css'\n\n// import atui\nimport atui from 'atui'\n\nnew Vue({\n  components: {\n    vButton: atui.Button,\n    vDatePicker: atui.DatePicker\n  }\n})\n\n// use as required\nimport vDatePicker from 'atui/lib/date-picker';\nnew Vue({\n  components: {\n    vDatePicker: vDatePicker\n  }\n})\n\n```\n\n### use in browser\n\n```html\n\u003cscript src=\"//unpkg.com/vue@2.1.4\"\u003e\u003c/script\u003e\n\u003cscript src=\"//unpkg.com/atui\"\u003e\u003c/script\u003e\n\u003cscript\u003e\n  new Vue({\n    components: {\n      vButton: atui.Button\n    }\n  })\n\u003c/script\u003e\n```\n\n### Roadmap\nhttps://github.com/aliqin/atui/wiki/roadmap\n\n### License\nMIT\n\n\n\n### Thanks\n* [ant.design](https://ant.design)\n* [bisheng](https://github.com/benjycui/bisheng)\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faliqin%2Fatui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faliqin%2Fatui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faliqin%2Fatui/lists"}