ieeemysight4rehab/ieeemysight4rehab.github.io

View on GitHub
src/components/common/View.vue

Summary

Maintainability
Test Coverage
<template>
  <v-content id="home" class="pb-0">
    <v-slide-y-reverse-transition>
      <router-view  v-show="show" />
    </v-slide-y-reverse-transition>
  </v-content>
</template>

<script>
export default {
  created(){
   this.show = true
  }
}
</script>