- Added more pages and fixed some links (schools, single spell, and login page)

This commit is contained in:
Alexis
2020-07-03 22:19:31 +02:00
parent e6f0ee38aa
commit 5d1b44cf6d
10 changed files with 104 additions and 37 deletions

View File

@@ -1,9 +1,9 @@
<template>
<div class="container-fluid p-4" id="spell-container">
<h1 class="display-3 font-display mb-3">{{ school.name }}</h1>
<p>{{ school.description }}</p>
<spell-list :school_id="id"/>
</div>
<div class="container-fluid p-4" id="spell-container">
<h1 class="display-3 font-display mb-3">{{ school.name }}</h1>
<p>{{ school.description }}</p>
<spell-list :school_id="id"/>
</div>
</template>
<script>
@@ -14,7 +14,7 @@ import { RepositoryFactory } from "~/api/repositories"
const Schools = RepositoryFactory.get('schools')
export default {
name: 'single-school',
name: 'single-school-page',
components: {
'spell-list': SpellsList,
},