11 lines
336 B
JavaScript
11 lines
336 B
JavaScript
import createLazyLoad from 'v3-lazyload-hyw'
|
|
import { defineNuxtPlugin } from '#app'
|
|
|
|
const LazyOption = {
|
|
error:'http://localhost:3003/img/error.png',
|
|
loading:'http://localhost:3003/img/loading.gif',
|
|
payload:1
|
|
}
|
|
export default defineNuxtPlugin(nuxtApp => {
|
|
nuxtApp.vueApp.directive('lazy',createLazyLoad(LazyOption))
|
|
}) |