/*= require vue */ /* global Vue */ (() => { window.gl = window.gl || {}; window.gl.environmentsList = window.gl.environmentsList || {}; window.gl.environmentsList.ActionsComponent = Vue.component('actions-component', { props: { actions: { type: Array, required: false, default: () => [], }, playIconSvg: { type: String, required: false, }, }, template: `
`, }); })();