You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

26 regels
729 B

  1. import SearchBar from './src/components/SearchBar/SearchBar.vue'
  2. import BaseDialog from './src/components/BaseDialog/index.vue'
  3. import Pagination from './src/components/Pagination/index.vue'
  4. import BaseTable from './src/components/BaseTable/index.vue'
  5. import InputArea from './src/components/BaseTable/subcomponents/InputArea.vue'
  6. import MethodBtn from './src/components/BaseTable/subcomponents/MethodBtn.vue'
  7. import SplitPane from './src/components/SplitPane/index.vue'
  8. let ModuleObj = {
  9. SearchBar,
  10. BaseDialog,
  11. Pagination,
  12. BaseTable,
  13. InputArea,
  14. MethodBtn,
  15. SplitPane
  16. }
  17. let MyModule = {}
  18. MyModule.install = (Vue) => {
  19. for (let i in ModuleObj) {
  20. Vue.component(i, ModuleObj[i])
  21. }
  22. }
  23. export default MyModule