-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.js
25 lines (24 loc) · 1.05 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
import Portlet from './src/components/Portlet.vue'
import EntityCrud from './src/components/EntityCrud.vue'
import EntityAction from './src/components/Entity/EntityAction.vue'
import EntityShow from './src/components/Entity/Show/EntityShow.vue'
import EntityEdit from './src/components/Entity/Edit/EntityEdit.vue'
import EntityIndex from './src/components/Entity/Index/EntityIndex.vue'
import EntityCreate from './src/components/Entity/Create/EntityCreate.vue'
import EntityInput from './src/components/Entity/Attachment/EntityInput.vue'
import EntityIndexTable from './src/components/Entity/Index/EntityIndexTable.vue'
import EntityCrudFormBuilder from './src/components/Entity/EntityCrudFormBuilder.vue'
const EntityCrudObject = { EntityCreate, EntityShow, EntityEdit, EntityIndex, EntityCrud, Portlet, EntityIndexTable, EntityInput, EntityCrudFormBuilder, EntityAction }
export {
EntityCrudObject as default,
EntityCreate,
EntityShow,
EntityEdit,
EntityIndex,
EntityCrud,
Portlet,
EntityIndexTable,
EntityInput,
EntityCrudFormBuilder,
EntityAction
}