gancio-upstream/pages/about.vue

22 lines
386 B
Vue
Raw Normal View History

2019-04-05 00:10:19 +02:00
<template lang="pug">
2019-06-06 23:54:32 +02:00
el-card
nuxt-link.float-right(to='/')
v-icon(name='times' color='red')
h3 {{$t('common.info')}}
2019-06-25 01:05:38 +02:00
div(v-html='$t("about")')
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>