Equal UI is a Vue 3 UI library empowered by Tailwindcss
1.21k
stars
67
forks
source link
Equal UI
Equal UI is a Vue 3 hackable components library with 30+ components on top of Tailwindcss
Explore Equal UI docs
# Features
- ๐ฅ One of the best visuals in Vue ecosystem
- ๐ Built-in dark theme
- ๐จ Full customization
- ๐ฌ Have tooltips, notifications, popovers
- ๐ Lightweight: 12KB brotli
- ๐ง Includes 30+ components
- ๐
Uses your Tailwindcss classes
# Links
Twitter: [@Yan](https://twitter.com/k0mmsussertod)
# Install
You need [Vue.js](https://v3.vuejs.org/) version 3.1+
```bash
# npm
npm install equal-vue
```
```bash
# yarn
yarn add equal-vue
```
# Usage
## All components
```js
import { createApp } from 'vue'
import Equal from 'equal-vue'
import Config from 'equal-vue/dist/theme/full' // or light / dark theme
createApp.use(Equal, Config)
```
## Or individual components
```js
import { createApp } from 'vue'
import { Button, Switch } from 'equal-vue'
import Config from 'equal-vue/dist/theme/full' // or light / dark theme
createApp.use(Button, Config).use(Switch, Config)
```
# License
[MIT](https://raw.githubusercontent.com/Equal-UI/Equal/master/LICENSE)