mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-22 14:01:52 +00:00
9 lines
286 B
JavaScript
9 lines
286 B
JavaScript
|
|
import mdInputContainer from './mdInputContainer.vue';
|
||
|
|
import mdInputContainerTheme from './mdInputContainer.theme';
|
||
|
|
|
||
|
|
export default function install(Vue) {
|
||
|
|
Vue.component('md-input-container', Vue.extend(mdInputContainer));
|
||
|
|
|
||
|
|
window.VueMaterial.styles.push(mdInputContainerTheme);
|
||
|
|
}
|