summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/performance_bar/components/upstream_performance_bar.vue
blob: d438b1ec27b87814f82d2c3453c5dcfaee380bc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<script>
export default {
  mounted() {
    const upstreamPerformanceBar = document
      .getElementById('peek-view-performance-bar')
      .cloneNode(true);

    this.$refs.wrapper.appendChild(upstreamPerformanceBar);
  },
};
</script>
<template>
  <div
    id="peek-view-performance-bar-vue"
    class="view"
    ref="wrapper"
  ></div>
</template>