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