-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
40 lines (37 loc) · 1.09 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import ButtonSimple from './components/widgets/ButtonSimple.vue'
import ColorField from './components/widgets/ColorField.vue'
import Combobox from './components/widgets/Combobox.vue'
import ComboboxStyled from './components/widgets/ComboboxStyled.vue'
import DataTable from './components/widgets/DataTable.vue'
import ProductionName from './components/widgets/ProductionName.vue'
import SearchField from './components/widgets/SearchField.vue'
import SearchQueryList from './components/widgets/SearchQueryList.vue'
import TabsRoute from './components/widgets/TabsRoute.vue'
import TextField from './components/widgets/TextField.vue'
import * as productions from './libs/productions'
import * as sorting from './libs/sorting'
import * as string from './libs/string'
const modules = {
components: {
widgets: {
ButtonSimple,
ColorField,
Combobox,
ComboboxStyled,
DataTable,
ProductionName,
SearchField,
SearchQueryList,
TabsRoute,
TextField
},
modals: {
}
},
libs: {
productions,
sorting,
string
}
}
export default modules