vant-image本地图片无法显示
程序员文章站
2022-07-15 15:54:19
...
针对vant无法加载本地图片,而且文档也没有说明
所以我当时用的时候,也是一样的
以上是用数组来显示的记住用require
如果不用数组
<van-image
lazy-load
width="34rem"
height="8rem"
fit="contain"
src="../assets/logo.png"
@click="toMikeRouter(index)"
>
<template v-slot:loading>
<van-loading type="spinner" size="20" />
</template>
<template v-slot:error>加载失败</template>
</van-image>
这个代码是显示不出来的
解决方法
src属性绑定requeir()方法
:src="require('../assets/logo.png')"