airyland / vux

Mobile UI Components based on Vue & WeUI
https://vux.li
MIT License
17.6k stars 3.71k forks source link

swiper组件list本地图片该如何写,谢谢 #1937

Closed gandyf closed 6 years ago

gandyf commented 6 years ago

按照作者您的范例,我的写法如下:

const imgList = [ '../assets/img/IMG_0205' ]

const demoList = imgList.map((one,index) => ({ url: 'javacript:', img: one })) 图片路径能找到,但是图片无法加载出来,求解,谢谢

agileago commented 6 years ago

你可以试试这样

const imgList = [
  require('../assets/img/IMG_0205')
]