Mobile UI elements for Vue 2.0
npm install v-mui --S
Import all components.
import Vue from 'vue';
import VueMUI from 'v-mui';
Vue.use(VueMUI);
Or import specified component.
import { Button, List } from 'v-mui';
Vue.component(Button.name, Button);
Vue.component(List.name, List);
Import CSS.
import 'v-mui/dist/css/vue-mui.css';
Clone or download this repository
# install dependencies
npm install
# serve with hot reload at localhost:3000
npm run dev
# build for production with minification
npm run build