module.js 483 B

123456789101112
  1. import Vue from 'vue'
  2. import customA from '@/components/cm-custom/custom-a.vue'
  3. import customB from '@/components/cm-custom/custom-b.vue'
  4. import customC from '@/components/cm-custom/custom-c.vue'
  5. import customD from '@/components/cm-custom/custom-d.vue'
  6. import customP from '@/components/cm-custom/custom-p.vue'
  7. Vue.component('custom-a',customA)
  8. Vue.component('custom-b',customB)
  9. Vue.component('custom-c',customC)
  10. Vue.component('custom-d',customD)
  11. Vue.component('custom-p',customP)