aerwen_web_nuxt/plugins/v3-lazyload-hyw.js
2023-06-28 19:02:53 +08:00

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))
})