Vue使用v-viewer實(shí)現(xiàn)圖片預(yù)覽
本文實(shí)例為大家分享了Vue使用v-viewer實(shí)現(xiàn)圖片預(yù)覽的具體代碼,供大家參考,具體內(nèi)容如下
1.安裝依賴
npm install v-viewer --save
2.在main.js中引入
import Viewer from ’v-viewer’ //圖片查看插件import ’viewerjs/dist/viewer.css’Vue.use(Viewer)Viewer.setDefaults({ Options: { ’inline’: true, ’button’: true, ’navbar’: true, ’title’: true, ’toolbar’: true, ’tooltip’: true, ’movable’: true, ’zoomable’: true, ’rotatable’: true, ’scalable’: true, ’transition’: true, ’fullscreen’: true, ’keyboard’: true, ’url’: ’data-source’ } })
3.在組件中引用
<van-swipe :autoplay='3000'> <van-swipe-item v-for='(image, index) in moodsImg' :key='index'> <viewer :images = 'moodsImg' > <img :src='http://m.b3g6.com/bcjs/image'/> </viewer> </van-swipe-item></van-swipe>
效果

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. Python 合并拼接字符串的方法2. python使用jenkins發(fā)送企業(yè)微信通知的實(shí)現(xiàn)3. Python3 json模塊之編碼解碼方法講解4. 通過實(shí)例解析Python文件操作實(shí)現(xiàn)步驟5. ASP基礎(chǔ)知識VBScript基本元素講解6. Python 制作查詢商品歷史價(jià)格的小工具7. ASP.NET MVC使用jQuery ui的progressbar實(shí)現(xiàn)進(jìn)度條8. PHP使用Swagger生成好看的API文檔9. Python 利用Entrez庫篩選下載PubMed文獻(xiàn)摘要的示例10. Python 如何調(diào)試程序崩潰錯(cuò)誤

網(wǎng)公網(wǎng)安備