mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-22 05:51:52 +00:00
12 lines
417 B
JavaScript
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);
|
|
}
|