2019-04-05 00:10:19 +02:00
|
|
|
<template lang="pug">
|
2019-10-22 23:49:21 +02:00
|
|
|
el-main
|
|
|
|
h4 <nuxt-link to='/'><img src='/favicon.ico'/></nuxt-link> {{$t('common.info')}}
|
2019-06-06 23:54:32 +02:00
|
|
|
|
2019-06-25 01:05:38 +02:00
|
|
|
div(v-html='$t("about")')
|
2019-08-31 22:25:00 +02:00
|
|
|
hr
|
|
|
|
small Made with <a href='https://gancio.org'>Gancio {{settings.version}}</a>
|
2019-04-05 00:10:19 +02:00
|
|
|
|
2019-05-30 12:04:14 +02:00
|
|
|
</template>
|
2019-08-07 01:26:14 +02:00
|
|
|
<script>
|
|
|
|
import { mapState } from 'vuex'
|
|
|
|
export default {
|
|
|
|
computed: mapState(['settings']),
|
|
|
|
head () {
|
|
|
|
return {
|
|
|
|
title: `${this.settings.title} - ${this.$t('common.info')}`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|