{"id":20298274,"url":"https://github.com/wmfe/xcui","last_synced_at":"2025-04-11T12:55:02.942Z","repository":{"id":57401156,"uuid":"67284265","full_name":"wmfe/xcui","owner":"wmfe","description":":fork_and_knife: A Vue.js 2.x desktop components colletion","archived":false,"fork":false,"pushed_at":"2018-12-07T06:51:22.000Z","size":9730,"stargazers_count":88,"open_issues_count":1,"forks_count":30,"subscribers_count":28,"default_branch":"2.0","last_synced_at":"2025-03-25T09:12:07.354Z","etag":null,"topics":["component-library","javascript","vue","vue-component","vue-components","vue2","vuejs","vuejs2"],"latest_commit_sha":null,"homepage":"https://wmfe.github.io/xcui/","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wmfe.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":"2016-09-03T10:23:42.000Z","updated_at":"2022-07-22T10:31:36.000Z","dependencies_parsed_at":"2022-09-19T10:42:45.341Z","dependency_job_id":null,"html_url":"https://github.com/wmfe/xcui","commit_stats":null,"previous_names":[],"tags_count":28,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wmfe%2Fxcui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wmfe%2Fxcui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wmfe%2Fxcui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wmfe%2Fxcui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wmfe","download_url":"https://codeload.github.com/wmfe/xcui/tar.gz/refs/heads/2.0","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248403982,"owners_count":21097630,"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":["component-library","javascript","vue","vue-component","vue-components","vue2","vuejs","vuejs2"],"created_at":"2024-11-14T16:08:46.302Z","updated_at":"2025-04-11T12:55:02.737Z","avatar_url":"https://github.com/wmfe.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://wmfe.github.io/xcui\" target=\"_blank\"\u003e\u003cimg width=\"100\"src=\"https://raw.githubusercontent.com/wmfe/xcui/2.0/demos/assets/xcui-logo.png\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://circleci.com/gh/wmfe/xcui/tree/2.0\"\u003e\u003cimg src=\"https://img.shields.io/circleci/project/wmfe/xcui/2.0.svg\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://www.npmjs.com/package/xcui\"\u003e\u003cimg src=\"https://img.shields.io/npm/dm/xcui.svg\" alt=\"Downloads\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://www.npmjs.com/package/xcui\"\u003e\u003cimg src=\"https://img.shields.io/npm/v/xcui.svg\" alt=\"Version\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://www.npmjs.com/package/xcui\"\u003e\u003cimg src=\"https://img.shields.io/npm/l/xcui.svg\" alt=\"Licence\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## About\n\nXCUI 是基于`Vue2.0`的**桌面端组件库**。\n\nXCUI的目标是：\n\n+ 满足桌面端页面大部分基础组件需求。\n+ 快速开发基于 `Vue2.0` 构建的项目。\n+ 保持小体积, 无其他js库依赖(No jquery, No Bootstrap, etc)\n+ 简洁优雅。\n\n## 组件展示\n\n[XCUI主页](https://wmfe.github.io/xcui/)\n\n## 版本支持\n\n在使用`Vue 2.x` 版本时，推荐使用 `Vue 2.0.8` 以上版本。\n\n\n## 安装\n\n通过`npm`安装。\n\n```bash\nnpm install xcui\n```\n\n具体的安装方式请见[这里](https://wmfe.github.io/xcui/#/intro/installation)。\n\n## 快速上手\n\n`xcui`使用`umd`方式打包，支持各种模块加载器。\n\n在页面根实例中引入：\n\n```javascript\nimport Vue from 'vue'\nimport xcui from 'xcui'\nimport 'xcui/lib/xcui.css'\nVue.use(xcui);\n```\n\n在页面中声明标签，即可使用。\n\n\u003e **说明**\n\u003e XCUI在使用`Vue.use(xcui)`后，会默认以`x-`前缀注册所有组件，在Vue实例中可直接使用而**不用在`components`中声明**。举例：\n\n```html\n\u003cx-button type=\"primary\"\u003estart\u003c/x-button\u003e\n```\n\n更多详细信息请见[这里](https://wmfe.github.io/xcui/#/intro/quickstart)。\n\n\n## 开发\n\n### Clone the repo\n```\n$ git clone git@github.com:wmfe/xcui.git\n```\n### 安装依赖\n```\n$ npm i\n```\n### Run dev server\n```\n$ npm run dev\n```\n### Build components\n```\n$ npm run build\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwmfe%2Fxcui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwmfe%2Fxcui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwmfe%2Fxcui/lists"}