1
0
mirror of https://github.com/kihashi/stardew_community_checklist.git synced 2025-10-19 08:03:17 +00:00
stardew_community_checklist/pages/changelog.vue

35 lines
546 B
Vue

<template>
<section class="section">
<h1 class="title">
Changelog
</h1>
<version v-for="version in changelog" :key="version.date" :version="version" />
</section>
</template>
<script>
import Version from '@/components/Version'
export default {
name: 'Changelog',
components: {
Version
},
async asyncData ({ $content }) {
const changelog = await $content('changelogs').sortBy('date', 'desc').fetch()
return {
changelog
}
},
data () {
return {
}
}
}
</script>
<style>
</style>