Skip to content

Equal-UI/Equal

Repository files navigation

Twitter Follow

Equal UI

Equal UI is a Vue 3 hackable components library with 30+ components on top of Tailwindcss
Explore Equal UI docs

Features

  • Enterpise class UI based on Equal design system
  • Built-in dark theme
  • Full components customization
  • Theme building feature with Tailwindcss
  • Lightweight: 18KB brotli
  • Includes 30+ components
  • Based on TypeScript

Links

Twitter: @Yan

Install

You need Vue.js version 3.1+

# npm
npm install equal-vue
# yarn
yarn add equal-vue

Usage

All components

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

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