index.js
21 lines
| 1 | import loading from '../loading'; |
| 2 | import query from '../query'; |
| 3 | import table from '../table'; |
| 4 | import chooseColumn from '../choose-column'; |
| 5 | import actions from './actions'; |
| 6 | import action from '../action'; |
| 7 | import tableOptions from '../table-options'; |
| 8 | import options from '../options'; |
| 9 | |
| 10 | export default { |
| 11 | actions, |
| 12 | modules: { |
| 13 | action, |
| 14 | chooseColumn, |
| 15 | loading, |
| 16 | query, |
| 17 | table, |
| 18 | tableOptions, |
| 19 | options |
| 20 | }, |
| 21 | }; |