summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/cycle_analytics/components/stage_test_component.js.es6
blob: 7e16ae67f666ded9ec3769d39b147af68529bd25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
((global) => {

  global.cycleAnalytics = global.cycleAnalytics || {};

  global.cycleAnalytics.StageTestComponent = Vue.extend({
    template: '#stage-test-component',
    components: {
      'item-build-component': gl.cycleAnalytics.ItemBuildComponent,
    },
    props: {
      items: Array,
    }
  });

})(window.gl || (window.gl = {}));