From 35dda994c0326d02f4c1b2d8305c1e4d850b2401 Mon Sep 17 00:00:00 2001 From: jo Date: Tue, 16 May 2023 14:15:56 +0200 Subject: [PATCH] test(front): fix lint error with vue lazyload Part-of: --- front/src/init/lazyLoad.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/init/lazyLoad.ts b/front/src/init/lazyLoad.ts index f3b1775c1..82d349d47 100644 --- a/front/src/init/lazyLoad.ts +++ b/front/src/init/lazyLoad.ts @@ -3,5 +3,5 @@ import type { InitModule } from '~/types' import VueLazyload from 'vue3-lazyload' export const install: InitModule = ({ app }) => { - app.use(VueLazyload) + app.use(VueLazyload, {}) }