fix missing title bug

Signed-off-by: Benny Samir Hierl <bennysamir@posteo.de>
This commit is contained in:
Benny Samir Hierl 2022-02-20 20:04:25 +01:00
parent 53ec249f69
commit 946bd8b9d7

View file

@ -1,8 +1,10 @@
<script setup lang="ts"> <script setup lang="ts">
import { useI18n } from 'vue-i18n' import { useI18n } from 'vue-i18n'
import { useTitle } from '@vueuse/core'
import { useWishlistsStore, useEditMode } from '@/composables' import { useWishlistsStore, useEditMode } from '@/composables'
const { t } = useI18n() const { t } = useI18n()
useTitle(t('common.app-title.text'))
const { isActive: editModeIsActive } = useEditMode() const { isActive: editModeIsActive } = useEditMode()
const { state, isFinished, fetch } = useWishlistsStore() const { state, isFinished, fetch } = useWishlistsStore()
await fetch() await fetch()