mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
20 lines
456 B
Vue
20 lines
456 B
Vue
<template lang="pug">
|
|
el-main
|
|
h4 <nuxt-link to='/'><img src='/favicon.ico'/></nuxt-link> {{$t('common.info')}}
|
|
|
|
div(v-html='$t("about")')
|
|
hr
|
|
small Made with <a href='https://gancio.org'>Gancio {{settings.version}}</a>
|
|
|
|
</template>
|
|
<script>
|
|
import { mapState } from 'vuex'
|
|
export default {
|
|
computed: mapState(['settings']),
|
|
head () {
|
|
return {
|
|
title: `${this.settings.title} - ${this.$t('common.info')}`
|
|
}
|
|
}
|
|
}
|
|
</script>
|