You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
335 B
9 lines
335 B
import Vue from "vue";
|
|
import VueLazyload from "vue-lazyload";
|
|
Vue.use(VueLazyload, {
|
|
preLoad: 1, // 预加载的宽高比
|
|
loading: require("@/assets/svg/Loading-ShowEasy-logo.svg"), // 图片加载的路径
|
|
attempt: 3, // 尝试加载次数
|
|
throttleWait: 50, //加载时间快些,不然时间有点久
|
|
observer: true,
|
|
});
|