vue-material/src/components/mdList/index.js
2016-07-19 00:19:33 -03:00

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);
}