github.com/covergates/covergates@v0.2.2-0.20201009050117-42ef8a19fb95/web/src/components/__examples__/ReportOverview.vue (about)

     1  <template>
     2    <report-overview />
     3  </template>
     4  
     5  <script lang="js">
     6  import ReportOverview from '@/components/ReportOverview.vue';
     7  import { Mutations } from '@/store';
     8  
     9  export default {
    10    components: { ReportOverview },
    11    mounted: function () {
    12      this.$store.commit(Mutations.SET_REPORT_CURRENT, {
    13        coverage: {
    14          StatementCoverage: 50
    15        }
    16      });
    17    }
    18  };
    19  </script>