ad51675ac6
* Update title for tabs not including challenges, guild and team * add section titles to challenges, guilds, and groups * Update dynamic title to use vuex action * Remove duplicate key * Actually remove duplicate key * Fix section sub section in group * Add note to implement setTitle when adding a page * Add missing sections to dynamic title * Features string not translated * Use onGroupUpdate to update group titles * Add watcher to challenges for dynamic title updates * Small fixes * Add register and login to title, remove duplicate keys * Add home page dynamic title functionality * Minor name changes * remove wrong i18n strings from front.js * refactor router note Co-authored-by: Matteo Pagliazzi <matteopagliazzi@gmail.com>
27 lines
674 B
Vue
27 lines
674 B
Vue
<template>
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<h2>{{ $t('dataExport') }}</h2>
|
|
<small>{{ $t('saveData') }}</small>
|
|
<h4>{{ $t('habitHistory') }}</h4>
|
|
{{ $t('exportHistory') }}
|
|
<a href="/export/history.csv">{{ $t('csv') }}</a>
|
|
<h4>{{ $t('userData') }}</h4>
|
|
{{ $t('exportUserData') }}
|
|
<a href="/export/userdata.xml">{{ $t('xml') }}</a>
|
|
<a href="/export/userdata.json">{{ $t('json') }}</a>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
mounted () {
|
|
this.$store.dispatch('common:setTitle', {
|
|
section: this.$t('settings'),
|
|
subSection: this.$t('dataExport'),
|
|
});
|
|
},
|
|
};
|
|
</script>
|