@jaredcrimmins/material-components-vue
v0.9.0
Published
Material Design components for Vue
Readme
Material Components Vue
Material Design components for Vue
Material Components Vue implements Material Components Web in Vue, using the advanced approach.
Install
npm install @jaredcrimmins/material-components-vueUsage
The entirety of Material Components Vue can be installed globally, or you can install individual components à la carte.
Global
// src/main.js
import {MaterialComponentsVue} from '@jaredcrimmins/material-components-vue';
import Vue from 'vue';
// Install plugin
Vue.use(MaterialComponentsVue);À la carte
// src/main.js
import {MDCButton} from '@jaredcrimmins/material-components-vue';
import Vue from 'vue';
Vue.component(MDCButton);