Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yunfeihuang/vx-ui
vue components 移动端UI组件库
https://github.com/yunfeihuang/vx-ui
components javascript sass vue vue2
Last synced: 3 months ago
JSON representation
vue components 移动端UI组件库
- Host: GitHub
- URL: https://github.com/yunfeihuang/vx-ui
- Owner: yunfeihuang
- Created: 2017-03-19T12:37:26.000Z (over 7 years ago)
- Default Branch: feature_2.0
- Last Pushed: 2023-01-07T09:47:22.000Z (almost 2 years ago)
- Last Synced: 2024-07-30T13:13:24.651Z (3 months ago)
- Topics: components, javascript, sass, vue, vue2
- Language: Vue
- Homepage: http://vx.bittyos.com/
- Size: 5.43 MB
- Stars: 201
- Watchers: 12
- Forks: 51
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vx-ui
> vue3.x 移动端UI组件库
>## 中文文档:
http://vx.bittyos.com/v3/## 示例浏览地址:
http://vx.bittyos.com/v3/demo.html## 安装
```
npm install vx-ui --save-dev
```### 全局注册组件
```
import {createApp} from 'vue'
import App from './App'
import 'vx-ui/lib/style/theme/index.css'
import Vx from 'vx-ui'
createApp(App).use(Vx)
```### 单个注册组件(Button示例)
```
import Vue from 'vue'
import App from './App'
import 'vx-ui/lib/style/theme/button.css'
import { Button } from 'vx-ui' // or import Button from 'vx-ui/lib/button'
createApp(App).component(Button.name, Button)
```### 修改UI主题风格
```
#修改packages/style/src/variable.scss变量后运行以下命令即可
npm run build:theme
```
### vx-ui vue2.x版本的
https://github.com/yunfeihuang/vx-ui/tree/master#### 打赏赞助,请扫以下二维码,谢谢!
![Minion](http://vx.bittyos.com/static/images/pay-code.png?v=0.1)### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).