2020-03-25

庚子鼠年 己卯月 丁卯日

描述

vue+vant开发

随笔

Vant开发

Q:路由菜单空白问题?

A:在父路由添加一个重定向就行了====》 redirect: 'center'

Q:关于图片懒加载

A:

配置

import { Lazyload } from 'vant'
Vue.use(Lazyload, {
  preLoad: 1.3,
  error: 'static/img/error.jpg',
  loading: 'static/img/loading.gif',
  attempt: 3
})

关于图片weight100%问题:<img v-lazy="img" :height="swipeImagesHeight"/>

原文地址:https://www.cnblogs.com/chang1024/p/12571629.html