2018-07-27 14:40:42 +02:00
|
|
|
import Vue from 'vue';
|
|
|
|
import Vuetify from 'vuetify/es5/components/Vuetify';
|
2018-11-07 23:18:45 +01:00
|
|
|
import VAlert from 'vuetify/es5/components/VAlert';
|
2018-07-27 14:40:42 +02:00
|
|
|
import VApp from 'vuetify/es5/components/VApp';
|
|
|
|
import VBadge from 'vuetify/es5/components/VBadge';
|
|
|
|
import VBottomSheet from 'vuetify/es5/components/VBottomSheet';
|
|
|
|
import VBtn from 'vuetify/es5/components/VBtn';
|
|
|
|
import VCard from 'vuetify/es5/components/VCard';
|
|
|
|
import VCheckbox from 'vuetify/es5/components/VCheckbox';
|
|
|
|
import VCombobox from 'vuetify/es5/components/VCombobox';
|
|
|
|
import VDialog from 'vuetify/es5/components/VDialog';
|
|
|
|
import VGrid from 'vuetify/es5/components/VGrid';
|
|
|
|
import VIcon from 'vuetify/es5/components/VIcon';
|
|
|
|
import VList from 'vuetify/es5/components/VList';
|
|
|
|
import VMenu from 'vuetify/es5/components/VMenu';
|
2018-07-31 17:04:06 +02:00
|
|
|
import VProgressCircular from 'vuetify/es5/components/VProgressCircular';
|
2018-07-27 14:40:42 +02:00
|
|
|
import VProgressLinear from 'vuetify/es5/components/VProgressLinear';
|
|
|
|
import VSelect from 'vuetify/es5/components/VSelect';
|
2018-07-27 15:24:36 +02:00
|
|
|
import VSwitch from 'vuetify/es5/components/VSwitch';
|
2018-08-25 18:15:19 +02:00
|
|
|
import VTextarea from 'vuetify/es5/components/VTextarea';
|
2018-07-27 14:40:42 +02:00
|
|
|
import VTextField from 'vuetify/es5/components/VTextField';
|
|
|
|
import VToolbar from 'vuetify/es5/components/VToolbar';
|
|
|
|
|
|
|
|
Vue.use(Vuetify, {
|
|
|
|
components: {
|
2018-11-07 23:18:45 +01:00
|
|
|
VAlert,
|
2018-07-27 14:40:42 +02:00
|
|
|
VApp,
|
|
|
|
VBadge,
|
|
|
|
VBottomSheet,
|
|
|
|
VBtn,
|
|
|
|
VCard,
|
|
|
|
VCheckbox,
|
|
|
|
VCombobox,
|
|
|
|
VDialog,
|
|
|
|
VGrid,
|
|
|
|
VIcon,
|
|
|
|
VList,
|
|
|
|
VMenu,
|
2018-07-31 17:04:06 +02:00
|
|
|
VProgressCircular,
|
2018-07-27 14:40:42 +02:00
|
|
|
VProgressLinear,
|
|
|
|
VSelect,
|
2018-07-27 15:24:36 +02:00
|
|
|
VSwitch,
|
2018-08-25 18:15:19 +02:00
|
|
|
VTextarea,
|
2018-07-27 14:40:42 +02:00
|
|
|
VTextField,
|
|
|
|
VToolbar,
|
|
|
|
},
|
2018-11-29 20:26:34 +01:00
|
|
|
iconfont: 'mdi',
|
2018-07-27 14:40:42 +02:00
|
|
|
});
|