vikunja-frontend/src/composables/useTitle.ts
Dominik Pschenitschni d064f0acc0 fix import type
2022-07-04 21:50:48 +00:00

12 lines
No EOL
303 B
TypeScript

import { computed, watchEffect } from 'vue'
import type { ComputedGetter } from 'vue'
import { setTitle } from '@/helpers/setTitle'
export function useTitle(titleGetter: ComputedGetter<string>) {
const titleRef = computed(titleGetter)
watchEffect(() => setTitle(titleRef.value))
return titleRef
}