gitlab-org--gitlab-foss/app/assets/javascripts/environments/environments_bundle.js.es6

24 lines
497 B
JavaScript
Raw Normal View History

2016-10-14 08:14:18 -04:00
//= require vue
//= require_tree ./stores/
//= require ./components/environment
//= require ./vue_resource_interceptor
2016-10-14 08:14:18 -04:00
2016-10-26 11:00:16 -04:00
$(() => {
2016-10-14 08:14:18 -04:00
window.gl = window.gl || {};
2016-10-26 11:00:16 -04:00
2017-01-05 05:07:34 -05:00
if (gl.EnvironmentsListApp) {
gl.EnvironmentsListApp.$destroy(true);
2016-10-14 08:14:18 -04:00
}
2017-01-05 05:07:34 -05:00
const Store = gl.environmentsList.EnvironmentsStore;
2016-10-26 11:00:16 -04:00
2017-01-05 05:07:34 -05:00
gl.EnvironmentsListApp = new gl.environmentsList.EnvironmentsComponent({
el: document.querySelector('#environments-list-view'),
2017-01-05 05:07:34 -05:00
propsData: {
store: Store.create(),
2016-10-14 08:14:18 -04:00
},
2017-01-05 05:07:34 -05:00
2016-10-14 08:14:18 -04:00
});
2016-10-20 07:09:35 -04:00
});