/** * Renders the stop "button" that allows stop an environment. * Used in environments table. */ const Vue = require('vue'); module.exports = Vue.component('stop-component', { props: { stopUrl: { type: String, default: '', }, }, template: ` `, });