18 lines
849 B
JavaScript
18 lines
849 B
JavaScript
import Vue from 'vue';
|
|
// Global components
|
|
import DatePicker from '/imports/ui/components/global/DatePicker.vue';
|
|
import TextField from '/imports/ui/components/global/TextField.vue';
|
|
import TextArea from '/imports/ui/components/global/TextArea.vue';
|
|
import SmartSelect from '/imports/ui/components/global/SmartSelect.vue';
|
|
import SmartCombobox from '/imports/ui/components/global/SmartCombobox.vue';
|
|
import SmartCheckbox from '/imports/ui/components/global/SmartCheckbox.vue';
|
|
import SmartSwitch from '/imports/ui/components/global/SmartSwitch.vue';
|
|
|
|
Vue.component('DatePicker', DatePicker);
|
|
Vue.component('TextField', TextField);
|
|
Vue.component('TextArea', TextArea);
|
|
Vue.component('SmartSelect', SmartSelect);
|
|
Vue.component('SmartCombobox', SmartCombobox);
|
|
Vue.component('SmartCheckbox', SmartCheckbox);
|
|
Vue.component('SmartSwitch', SmartSwitch);
|