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