1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-30 13:14:20 +00:00
5e-drs/docs/.vuepress/theme/layouts/SpellsLayout.vue
Maxime Moraine dac4c63d9a netlify test
2020-03-26 19:04:23 +01:00

20 lines
268 B
Vue

<template>
<div class="spells">
<div v-for="page in pages" :key="page.key">
{{ page.title }}
</div>
</div>
</template>
<script>
export default {
computed: {
pages() {
return this.$pagination.pages
}
}
}
</script>
<style>
</style>