mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
25 lines
431 B
Vue
25 lines
431 B
Vue
<template>
|
|
<div>
|
|
<ds-space>
|
|
<ds-heading tag="h2">{{ $t('site.changelog') }}</ds-heading>
|
|
</ds-space>
|
|
|
|
<ds-container>
|
|
<ds-space margin-top="large">
|
|
<ds-text>{{ $t('site.changelog') }}</ds-text>
|
|
<ds-text>...</ds-text>
|
|
</ds-space>
|
|
</ds-container>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
head() {
|
|
return {
|
|
title: this.$t('site.changelog'),
|
|
}
|
|
},
|
|
}
|
|
</script>
|