mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-10-30 13:14:20 +00:00
20 lines
268 B
Vue
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>
|