debian-mirror-gitlab/app/assets/javascripts/clusters_list/index.js

12 lines
242 B
JavaScript
Raw Normal View History

2020-04-08 14:13:33 +05:30
import Vue from 'vue';
2021-11-18 22:05:49 +05:30
import VueApollo from 'vue-apollo';
2021-01-03 14:25:43 +05:30
import loadClusters from './load_clusters';
2021-11-18 22:05:49 +05:30
import loadAgents from './load_agents';
Vue.use(VueApollo);
2020-04-08 14:13:33 +05:30
export default () => {
2021-01-03 14:25:43 +05:30
loadClusters(Vue);
2021-11-18 22:05:49 +05:30
loadAgents(Vue, VueApollo);
2020-04-08 14:13:33 +05:30
};