Update frontend

This commit is contained in:
2021-04-10 13:15:02 +02:00
parent 3eaa7d2397
commit 160ed35d30
4 changed files with 8 additions and 101 deletions

View File

@@ -14,28 +14,22 @@
</b-navbar-brand>
<b-navbar-nav>
<b-nav-item :to="'/'">Home</b-nav-item>
<b-nav-item :to="'/hello'">Hello</b-nav-item>
<b-nav-item :to="'/stats'">Stats</b-nav-item>
<b-nav-item :to="'/attempts'">Attempts</b-nav-item>
</b-navbar-nav>
</b-navbar>
</div>
<router-view></router-view>
<!-- <img alt="Vue logo" src="./assets/logo.png" /> -->
<!-- <HelloWorld msg="Welcome to Your Vue.js + TypeScript App" /> -->
<!-- <AttemptList items="{ testAttempts }" /> -->
</div>
</template>
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import HelloWorld from '@/components/HelloWorld.vue';
import AttemptList from '@/components/AttemptList.vue';
import Stats from '@/components/Stats.vue';
@Component({
components: {
HelloWorld,
AttemptList,
Stats,
},