Glue for Vue

Glue Vue is a minimal Vue component library that uses Tailwindcss classes for customisation.
Installation
Install the npm package:
npm install @garethfuller/glue
yarn add @garethfuller/glue
Add it as a plugin in your Vue project, e.g. create a file like glue.js
in your plugins folder and add the following to it's contents:
import Vue from 'vue'
import Glue from '@garethfuller/glue'
Vue.use(Glue)
Import this plugin in your app's build step/file.
Dependencies
Required
Tailwindcss - Glue Vue expects that your project has Tailwind installed. The components then use the Tailwind classes provided by your Tailwind configuration.
For example, using the g-btn
component:
<g-btn color="red">Hello World</g-btn>
This will use your Tailwind colour class for bg-red-500
as the background colour for the button, and variant classes for hover/active states.
Optional
There are two optional dependencies, Fontawesome and highlight.js, which are used in specific components. For more information on these dependencies and how to install them in your project please proceed to Optional Dependencies.
Components
Development
yarn install
Compiles and hot-reloads for development
yarn run serve
Compiles and minifies for production
yarn run build
Run your tests
yarn run test
Lints and fixes files
yarn run lint