Added Dockerfile and some fixed some bugs

This commit is contained in:
Annika Merris 2024-01-17 21:17:00 -05:00
parent a8d677c34e
commit 0f37f195a9
11 changed files with 59 additions and 93 deletions

View file

@ -5,7 +5,7 @@ import SummaryCard from '@/components/BlessingPower/SummaryCard.vue'
</script>
<template>
<v-container>
<v-container fluid>
<v-row justify="center">
<v-col><StandardItemsCard /></v-col>
<v-col><SpecialItemsCard /></v-col>

View file

@ -5,7 +5,7 @@ import SummaryCard from '@/components/FellowPower/SummaryCard.vue'
</script>
<template>
<v-container>
<v-container fluid>
<v-row justify="center">
<v-col><StandardItemsCard /></v-col>
<v-col><SpecialItemsCard /></v-col>

View file

@ -1,11 +1,10 @@
<script setup lang="ts">
import { RouterLink } from 'vue-router';
</script>
<template>
<main>
<RouterLink :to="{ name: 'blessing-power' }">
<v-btn>Blessing Power</v-btn>
</RouterLink>
<v-sheet>
Click one of the links to the left.
</v-sheet>
</main>
</template>