All Projects → Brickies → Vui

Brickies / Vui

Licence: mit
💯 A personal Vue UI component library for Mobile

Programming Languages

javascript
184084 projects - #8 most used programming language
es6
455 projects

Projects that are alternatives of or similar to Vui

Redux React Starter
DEPRECATED use the new https://github.com/didierfranc/react-webpack-4
Stars: ✭ 137 (-19.88%)
Mutual labels:  eslint, components
Vue Design System
An open source tool for building UI Design Systems with Vue.js
Stars: ✭ 2,077 (+1114.62%)
Mutual labels:  components
Iso
Build pages and prototypes with Lab UI components. No configuration or build setup required.
Stars: ✭ 158 (-7.6%)
Mutual labels:  components
Eslint docs
🇨🇳A translation of ESLint Documents, including configration and rules.
Stars: ✭ 163 (-4.68%)
Mutual labels:  eslint
Awesome Vue Cli3 Example
🦅 Awesome example for rapid Vue.js development using vue-cli3 .
Stars: ✭ 160 (-6.43%)
Mutual labels:  eslint
React Redux Universal Boilerplate
An Universal ReactJS/Redux Boilerplate
Stars: ✭ 165 (-3.51%)
Mutual labels:  eslint
Eslint Plugin Boundaries
Eslint plugin checking architecture boundaries between elements
Stars: ✭ 157 (-8.19%)
Mutual labels:  eslint
Terraform Aws Components
Opinionated, self-contained Terraform root modules that each solve one, specific problem
Stars: ✭ 168 (-1.75%)
Mutual labels:  components
Terra Core
Terra offers a set of configurable React components designed to help build scalable and modular application UIs. This UI library was created to solve real-world issues in projects we work on day to day.
Stars: ✭ 167 (-2.34%)
Mutual labels:  components
Amexio.github.io
Amexio is a rich set of Angular 7 (170+) components powered by HTML5 & CSS3 for Responsive Design and with 80+ Material Design Themes, UI Components, Charts, Gauges, Data Point Widgets, Dashboards. Amexio is completely Open Sourced and Free. It's based on Apache 2 License. You can use it in your production grade work today at no cost or no obligation.
Stars: ✭ 163 (-4.68%)
Mutual labels:  components
Eslint Config Alloy
Progressive ESLint config for your React/Vue/TypeScript projects
Stars: ✭ 2,202 (+1187.72%)
Mutual labels:  eslint
Pop
Monorepo of the PoP project, including: a server-side component model in PHP, a GraphQL server, a GraphQL API plugin for WordPress, and a website builder
Stars: ✭ 160 (-6.43%)
Mutual labels:  components
Qui
A Vue.js design-system for Web.
Stars: ✭ 165 (-3.51%)
Mutual labels:  components
Eslint Watch
ESLint with simple watching capabilities
Stars: ✭ 159 (-7.02%)
Mutual labels:  eslint
Ng Aquila
Angular UI Component library for the Open Insurance Platform
Stars: ✭ 170 (-0.58%)
Mutual labels:  components
Express Webpack React Redux Typescript Boilerplate
🎉 A full-stack boilerplate that using express with webpack, react and typescirpt!
Stars: ✭ 156 (-8.77%)
Mutual labels:  eslint
Ngx Currency
📦 Currency mask module for Angular
Stars: ✭ 161 (-5.85%)
Mutual labels:  components
Poetic
Automatically install and maintain ESLint, Prettier, EditorConfig and Airbnb rules for JavaScript, TypeScript and React.
Stars: ✭ 165 (-3.51%)
Mutual labels:  eslint
Semantic Ui React
The official Semantic-UI-React integration
Stars: ✭ 12,561 (+7245.61%)
Mutual labels:  components
Fela
State-Driven Styling in JavaScript
Stars: ✭ 2,097 (+1126.32%)
Mutual labels:  components

vui

Version Downloads License TravisCI

It's a A personal Vue UI component library .

效果预览

请扫描以下二维码

安装

npm 安装

npm i x-vui -S

CDN

<!-- 引入样式 -->
<link rel="stylesheet" href="https://unpkg.com/x-vui/lib/vui-css/index.css">
<!-- 引入组件库 -->
<script src="https://unpkg.com/x-vui/lib/vui.js"></script>

快速开始

完整引入

import Vue from 'vue'
import vui from 'x-vui'
import 'x-vui/lib/vui-css/index.css';

Vue.use(vui)

部分引入

import Vue from 'vue'
import {
  Scroller,
  Select
  // ...
} from 'x-vui'
import 'x-vui/lib/vui-css/scroller.css';
import 'x-vui/lib/vui-css/select.css';

Vue.component(Scroller.name, Scroller)
Vue.component(Select.name, Select)

引入插件

注:完整引入了vui,则无需再注册插件

import Vue from 'vue';
import { 
  $Toast, 
  $Dialog 
  // ...
} from 'x-vui';

Vue.prototype.$toast = $Toast
Vue.prototype.$dialog = $Dialog

贡献代码

修改代码请阅读 开发指南, 使用过程中发现任何问题都可以提 Issue 给我。当然,我也非常欢迎你给我发 PR

开源协议

本项目基于 MIT 协议,请自由地享受和参与开源。

特别感谢

该组件库部分灵感来自于 elementvant,这里感谢 饿了么前端团队有赞前端团队 对开源项目的贡献,手动点波赞 👍

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].