Our documentation site lives at https://ui.hubgridcloud.com. You'll be able to find detailed documentation on getting started, all of the components, our theme, our principles, and more.
npm install --save @simplystack/ui
import Vue from 'vue';
import ui from '@simplystack/ui';
import '@simplystack/ui/main.css';
Vue.use(ui);
const theme = require('@simplystack/ui/tailwind.config');
module.exports = {
theme: {
extend: {
...theme,
},
},
};