/* eslint-disable no-param-reassign */ import Vue from 'vue'; import iconBranch from '../svg/icon_branch.svg'; ((global) => { global.cycleAnalytics = global.cycleAnalytics || {}; global.cycleAnalytics.StageStagingComponent = Vue.extend({ props: { items: Array, stage: Object, }, data() { return { iconBranch }; }, template: `
{{ stage.description }}
`, }); })(window.gl || (window.gl = {}));