28 lines
789 B
Vue
28 lines
789 B
Vue
<template lang="pug">
|
|
el-main
|
|
.edit(v-if='$auth.user && $auth.user.is_admin')
|
|
Editor(v-if='$auth.user && $auth.user.is_admin'
|
|
v-model='about')
|
|
el-button.float-right(type='success' plain icon='el-icon-check'
|
|
@click='setSetting({key: "about", value: about})') {{$t('common.save')}}
|
|
div(v-else v-html='about')
|
|
</template>
|
|
<script>
|
|
import Editor from '@/components/Editor'
|
|
import { mapState, mapActions } from 'vuex'
|
|
export default {
|
|
components: { Editor },
|
|
data ({ $store }) {
|
|
return {
|
|
about: $store.state.settings.about || this.$t('about')
|
|
}
|
|
},
|
|
computed: mapState(['settings']),
|
|
methods: mapActions(['setSetting']),
|
|
head () {
|
|
return {
|
|
title: `${this.settings.title} - ${this.$t('common.info')}`
|
|
}
|
|
}
|
|
}
|
|
</script>
|