0.0.1 • Published 4 years ago

vuendy v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

vuendy

License: MIT

A Vue.js + Tailwind UI kit

WORK IN PROGRESS - A lot is missing! Would you like to help? Start to contribute!


How to install

Install the package using yarn or npm

yarn add vuendy@latest

Make Vue aware of Vuendy

// Vue 3
import { createApp } from 'vue'
import App from './App.vue'
import vuendy from 'vuendy'

const vueApp = createApp(App)
vueApp.use(vuendy)
...


// Vue 2
import Vue from 'vue'
import App from './App.vue'
import vuendy from 'vuendy'

Vue.use(vuendy)
const vueApp = new Vue({ ... })

⚠️ Important ⚠️

It is necessary to include Vuendy's tailwind config in your own tailwind config to enable variants:

// tailwind.config.js
const vuendyConfig = require('vuendy/tailwind.config')


module.exports = {
  // other configurations
  variants: {
    extend: {
      ...vuendyConfig.variants.extend
    }
  }
}

License and Copyright

vuendy is licensed under the MIT license.

© 2021 Daniele Lenares