This repository has been archived on 2026-06-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
spellsaurus/client/src/pages/spells/spells-page.vue
2020-12-24 18:24:31 +01:00

22 lines
420 B
Vue

<template>
<div class="container-fluid p-4" id="spell-container">
<h1 class="display-3 font-display mb-3">Sortilèges</h1>
<spell-list/>
</div>
</template>
<script>
import SpellsList from "~/components/spells/spells-list"
export default {
name: 'spells-page',
metaInfo: {
titleTemplate: '%s - Grimoire'
},
components: {
'spell-list': SpellsList,
}
}
</script>
<style lang="scss"></style>