funkwhale/front/src/init/lazyLoad.ts

7 lines
153 B
TypeScript

import { InitModule } from '~/types'
import VueLazyload from 'vue3-lazyload'
export const install: InitModule = ({ app }) => {
app.use(VueLazyload)
}