moss-ui
v0.8.3
Published
The front-end UI framework with Vue.js and SCSS.
Downloads
715
Readme
MOSS-UI
The front-end UI framework with Vue.js and SCSS.
Demo
https://archco.github.io/moss-ui/
Installation
npm install moss-ui
Configuration
SCSS
// In your app.scss file.
@import 'app-variables'; // Customize variables for application.
@import '~moss-ui/src/scss/moss';
...
Vue Plugin
// In your app.js
import Vue from 'vue';
import MossUI from 'moss-ui';
Vue.use(MossUI);
window.vm = new Vue({
el: '#app',
});
In HTML
<!-- in the <head> tag -->
<link rel="stylesheet" href="/css/app.css">
...
<!-- in the end of the <body> tag -->
<script crossorigin="anonymous" src="https://polyfill.io/v3/polyfill.min.js"></script>
<script src="/js/app.js"></script>
Usage
Please see Documents