Breezy
Vue 3 components based on tailwind inspired by tails.
Installation
# with yarn
yarn add vue-breezy
# with npm
npm i -S vue-breezy
import { createApp } from 'vue'
import Breezy from 'vue-breezy'
import App from './App'
import './assets/tailwind.css'
createApp(App)
.use(Breezy)
.mount('#app')
Breezy requires tailwind to be installed separately.