mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
21 lines
386 B
Vue
21 lines
386 B
Vue
<template lang="pug">
|
|
el-card
|
|
|
|
nuxt-link.float-right(to='/')
|
|
v-icon(name='times' color='red')
|
|
h3 {{$t('common.info')}}
|
|
|
|
div(v-html='$t("about")')
|
|
|
|
</template>
|
|
<script>
|
|
import { mapState } from 'vuex'
|
|
export default {
|
|
computed: mapState(['settings']),
|
|
head () {
|
|
return {
|
|
title: `${this.settings.title} - ${this.$t('common.info')}`
|
|
}
|
|
}
|
|
}
|
|
</script>
|