Equal is a Vue 3 hackable UI library empowered by tailwindcss
npm install equal-vue
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)
``