2016-07-26 22:55:29 +00:00
|
|
|
import mdInputContainer from './mdInputContainer.vue';
|
2016-08-01 05:45:40 +00:00
|
|
|
import mdInput from './mdInput.vue';
|
|
|
|
|
import mdTextarea from './mdTextarea.vue';
|
2016-07-26 22:55:29 +00:00
|
|
|
import mdInputContainerTheme from './mdInputContainer.theme';
|
|
|
|
|
|
|
|
|
|
export default function install(Vue) {
|
2016-09-06 03:24:38 +00:00
|
|
|
Vue.component('md-input-container', mdInputContainer);
|
|
|
|
|
Vue.component('md-input', mdInput);
|
|
|
|
|
Vue.component('md-textarea', mdTextarea);
|
2016-07-26 22:55:29 +00:00
|
|
|
|
2016-10-13 06:27:58 +00:00
|
|
|
Vue.material.styles.push(mdInputContainerTheme);
|
2016-07-26 22:55:29 +00:00
|
|
|
}
|