1.0.0-beta5 • Published 7 years ago

v-mui v1.0.0-beta5

Weekly downloads
2
License
MIT
Repository
-
Last release
7 years ago

vue-mui

Mobile UI elements for Vue 2.0

Installation

npm install v-mui --S

Usage

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';

Development

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