global_main_loader.js 348 Bytes
Newer Older
yanzhongrong's avatar
yanzhongrong committed
1
import Pagination from '@/components/Pagination/index.vue'
neogcg's avatar
neogcg committed
2
import delids from '@/components/Del/index.vue'
yanzhongrong's avatar
yanzhongrong committed
3 4 5 6 7 8
// import VueSocketIO from 'vue-socket.io'

export default function performLoader(Vue) {
  // self component
  function plugins(Vue) {
    Vue.component('Pagination', Pagination)
neogcg's avatar
neogcg committed
9
    Vue.component('delids', delids)
yanzhongrong's avatar
yanzhongrong committed
10 11 12 13
  }
  Vue.use(plugins)

}