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

2 years ago
  1. import Vue from "vue";
  2. import VueLazyload from "vue-lazyload";
  3. Vue.use(VueLazyload, {
  4. preLoad: 1, // 预加载的宽高比
  5. loading: require("@/assets/svg/Loading-ShowEasy-logo.svg"), // 图片加载的路径
  6. attempt: 3, // 尝试加载次数
  7. throttleWait: 50, //加载时间快些,不然时间有点久
  8. observer: true,
  9. });