A modular UI library for Vue.js
Note: This is still an work in progress!
Install Sushi.js through npm or yarn
npm install --save sushi.js
yarn add sushi.js
In your applications main entry point add:
import Vue from 'vue'
import 'sushi.js/dist/main.css';
import Sushi from 'sushi.js'
Vue.use(Sushi)
In case of theme changes remove import 'sushi.css'
and use existing or create a new .scss file with this content.
$primary: limegreen;
// Other overiding theme variables
@import '~sushi.js/core/styles/main.scss';
You have 2 options for import location, either your main App.vue
or app.js
import '/path/to/your/style.scss'
<script lang="scss">
@import '/path/to/your.scss';
</script>
🍣🍣🍣