vue-material/src/components/mdList/index.js
2016-10-13 03:27:58 -03:00

12 lines
417 B
JavaScript

import mdList from './mdList.vue';
import mdListItem from './mdListItem.vue';
import mdListExpand from './mdListExpand.vue';
import mdListTheme from './mdList.theme';
export default function install(Vue) {
Vue.component('md-list', Vue.extend(mdList));
Vue.component('md-list-item', Vue.extend(mdListItem));
Vue.component('md-list-expand', Vue.extend(mdListExpand));
Vue.material.styles.push(mdListTheme);
}