mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-04-11 02:11:05 +00:00
10 lines
315 B
JavaScript
10 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);
|
|
}
|