mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-14 18:23:10 +00:00
11 lines
315 B
JavaScript
11 lines
315 B
JavaScript
|
|
import mdList from './mdList.vue';
|
||
|
|
import mdListItem from './mdListItem.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));
|
||
|
|
|
||
|
|
window.VueMaterial.styles.push(mdListTheme);
|
||
|
|
}
|