chore(deps): update dependency eslint-plugin-vue to v9 (#1958)
Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/1958 Co-authored-by: renovate <renovatebot@kolaente.de> Co-committed-by: renovate <renovatebot@kolaente.de>
This commit is contained in:
parent
c96df86d7e
commit
d749ec85dc
4 changed files with 26 additions and 20 deletions
|
|
@ -1,7 +1,7 @@
|
|||
import { computed, watchEffect } from 'vue'
|
||||
import { setTitle } from '@/helpers/setTitle'
|
||||
|
||||
import { ComputedGetter } from '@vue/reactivity'
|
||||
import { ComputedGetter } from 'vue'
|
||||
|
||||
export function useTitle(titleGetter: ComputedGetter<string>) {
|
||||
const titleRef = computed(titleGetter)
|
||||
|
|
|
|||
4
src/types/shims-vue.d.ts
vendored
4
src/types/shims-vue.d.ts
vendored
|
|
@ -1,8 +1,8 @@
|
|||
declare module 'vue' {
|
||||
import { CompatVue } from '@vue/runtime-dom'
|
||||
import { CompatVue } from 'vue'
|
||||
const Vue: CompatVue
|
||||
export default Vue
|
||||
export * from '@vue/runtime-dom'
|
||||
export * from 'vue'
|
||||
|
||||
const { configureCompat } = Vue
|
||||
export { configureCompat }
|
||||
|
|
|
|||
Reference in a new issue