Author:Fan
This is a UI framework made of me while learning Vue
- add Some CSS
Before using this framework, please set border-box
*, *::before, *::after { box-sizing: border-box; }
Support IE8+
- install fuetify
npm i -S fuetify
- import
import {Button} from 'fuetify' import 'fuetify/dist/index.css' export default { name: 'app', components: { 'f-button': Button } }