food/src/views/Preferences.vue

14 lines
237 B
Vue

<template>
<v-container fluid>
<p>TODO</p>
</v-container>
</template>
<script>
export default {
created() {
this.$store.dispatch('setTitle', { title: this.$t('navigation.preferences') });
},
};
</script>