fix: lint
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
kolaente 2022-05-18 22:09:25 +02:00
parent 10ac1af0d9
commit 8176a82832
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
import { computed, watchEffect } from 'vue' import { computed, watchEffect } from 'vue'
import { setTitle } from '@/helpers/setTitle' import { setTitle } from '@/helpers/setTitle'
import { ComputedGetter } from '@vue/reactivity' import { ComputedGetter } from 'vue'
export function useTitle(titleGetter: ComputedGetter<string>) { export function useTitle(titleGetter: ComputedGetter<string>) {
const titleRef = computed(titleGetter) const titleRef = computed(titleGetter)

View File

@ -1,8 +1,8 @@
declare module 'vue' { declare module 'vue' {
import { CompatVue } from '@vue/runtime-dom' import { CompatVue } from 'vue'
const Vue: CompatVue const Vue: CompatVue
export default Vue export default Vue
export * from '@vue/runtime-dom' export * from 'vue'
const { configureCompat } = Vue const { configureCompat } = Vue
export { configureCompat } export { configureCompat }