30 lines
1.6 KiB
JavaScript
30 lines
1.6 KiB
JavaScript
import Vue from 'vue';
|
|
// Global components
|
|
import DatePicker from '/imports/client/ui/components/global/DatePicker.vue';
|
|
import DragHandle from '/imports/client/ui/components/global/DragHandle.vue';
|
|
import IconPicker from '/imports/client/ui/components/global/IconPicker.vue';
|
|
import TextField from '/imports/client/ui/components/global/TextField.vue';
|
|
import TextArea from '/imports/client/ui/components/global/TextArea.vue';
|
|
import SmartSelect from '/imports/client/ui/components/global/SmartSelect.vue';
|
|
import SmartBtn from '/imports/client/ui/components/global/SmartBtn.vue';
|
|
import SmartCombobox from '/imports/client/ui/components/global/SmartCombobox.vue';
|
|
import SmartCheckbox from '/imports/client/ui/components/global/SmartCheckbox.vue';
|
|
import SmartSwitch from '/imports/client/ui/components/global/SmartSwitch.vue';
|
|
import SmartToggle from '/imports/client/ui/components/global/SmartToggle.vue';
|
|
import SvgIcon from '/imports/client/ui/components/global/SvgIcon.vue';
|
|
import SmartSlider from '/imports/client/ui/components/global/SmartSlider.vue';
|
|
|
|
Vue.component('DatePicker', DatePicker);
|
|
Vue.component('DragHandle', DragHandle);
|
|
Vue.component('IconPicker', IconPicker);
|
|
Vue.component('TextField', TextField);
|
|
Vue.component('TextArea', TextArea);
|
|
Vue.component('SmartSelect', SmartSelect);
|
|
Vue.component('SmartBtn', SmartBtn);
|
|
Vue.component('SmartCombobox', SmartCombobox);
|
|
Vue.component('SmartCheckbox', SmartCheckbox);
|
|
Vue.component('SmartSlider', SmartSlider);
|
|
Vue.component('SmartSwitch', SmartSwitch);
|
|
Vue.component('SmartToggle', SmartToggle);
|
|
Vue.component('SvgIcon', SvgIcon);
|