food/src/views/Preferences.vue

14 lines
237 B
Vue
Raw Normal View History

2017-09-20 04:11:40 +02:00
<template>
<v-container fluid>
<p>TODO</p>
</v-container>
2017-09-20 04:11:40 +02:00
</template>
<script>
export default {
created() {
2017-09-22 16:35:53 +02:00
this.$store.dispatch('setTitle', { title: this.$t('navigation.preferences') });
2017-09-20 04:11:40 +02:00
},
};
</script>