45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
import Vue from 'vue'
|
|
|
|
import HasError from './validation/HasError.vue'
|
|
import AlertError from './validation/AlertError'
|
|
import AlertSuccess from './validation/AlertSuccess'
|
|
import VCheckbox from './components/VCheckbox'
|
|
import TextInput from './TextInput'
|
|
import TextAreaInput from './TextAreaInput'
|
|
import VSelect from './components/VSelect'
|
|
import CheckboxInput from './CheckboxInput'
|
|
import SelectInput from './SelectInput'
|
|
import ColorInput from './ColorInput'
|
|
import FileInput from './FileInput'
|
|
import ImageInput from './ImageInput'
|
|
import RatingInput from './RatingInput'
|
|
import FlatSelectInput from './FlatSelectInput'
|
|
import ToggleSwitchInput from './ToggleSwitchInput'
|
|
|
|
// Components that are registered globaly.
|
|
[
|
|
HasError,
|
|
AlertError,
|
|
AlertSuccess,
|
|
VCheckbox,
|
|
VSelect,
|
|
CheckboxInput,
|
|
ColorInput,
|
|
TextInput,
|
|
SelectInput,
|
|
TextAreaInput,
|
|
FileInput,
|
|
ImageInput,
|
|
RatingInput,
|
|
FlatSelectInput,
|
|
ToggleSwitchInput
|
|
].forEach(Component => {
|
|
Vue.component(Component.name, Component)
|
|
})
|
|
|
|
// Lazy load some heavy component
|
|
Vue.component('SignatureInput', () => import('./SignatureInput'))
|
|
Vue.component('RichTextAreaInput', () => import('./RichTextAreaInput'))
|
|
Vue.component('DateInput', () => import('./DateInput'))
|
|
Vue.component('SimpleDateInput', () => import('./SimpleDateInput'))
|