/*= require vue */ /* global Vue */ (() => { window.gl = window.gl || {}; window.gl.environmentsList = window.gl.environmentsList || {}; window.gl.environmentsList.StopComponent = Vue.component('stop-component', { props: { stop_url: { type: String, default: '', }, }, computed: { stopUrl() { return this.stop_url; }, }, methods: { openConfirmDialog() { return window.confirm('Are you sure you want to stop this environment?'); // eslint-disable-line }, }, template: ` `, }); })();