vue.js中新增圖片的方法是:首先將要新增的圖片統一放在一個json檔案中;然後在vue頁面中引用該json檔案即可,如【import imgs from "../ ../static/json/img.json"】。
本教學操作環境:windows7系統、Vue2.9.6版本,Dell G3電腦。
vue.js新增圖片的方法如下:
(學習影片分享:php影片教學)
#方法一:在data裡面將圖片路徑保存好
imgList: [ { openItem: '../static/icon/ic_police.png' }, { openItem: '../static/icon/ic_prepay_confirm.png' }, { openItem: '../static/icon/ic_checkout.png' }, { openItem: '../static/icon/ic_lvye.png' }, { openItem: '../static/icon/ic_invoice.png' }, { openItem: '../static/icon/ic_bill.png' } ]
方法二:函數方法裡面直接去存取圖片路徑
let src = require('../../assets/homeImg/home_icon1.png');
方法三:將圖片統一放在一個json檔案中,之後在vue頁面中引用json檔案
import imgs from "../../static/json/img.json" export default { data () { return { imgList: imgs.images } } }
相關推薦:vue.js教學
#以上是vue.js中怎麼加入圖片的詳細內容。更多資訊請關注PHP中文網其他相關文章!