這篇文章將為大家詳細講解有關vue中本地靜態圖片路徑怎么寫,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
創新互聯服務項目包括南寧網站建設、南寧網站制作、南寧網頁制作以及南寧網絡營銷策劃等。多年來,我們專注于互聯網行業,利用自身積累的技術優勢、行業經驗、深度合作伙伴關系等,向廣大中小型企業、政府機構等提供互聯網行業的解決方案,南寧網站推廣取得了明顯的社會效益與經濟效益。目前,我們服務的客戶以成都為中心已經輻射到南寧省份的部分城市,未來相信會繼續擴大服務區域并繼續獲得客戶的支持與信任!
這里寫圖片描述
需求:如何components里面的index.vue怎樣能把assets里面的圖片拿出來。
1.在img標簽里面直接寫上路徑:
<img src="../assets/a1.png" class="" width="100%"/>
2.利用數組保存再循環輸出:
<el-carousel-item v-for="item in carouselData" :key="item.id"> <img :src="item.url" class="carouselImg"/> <span class="carouselSpan">{{ item.title }}</span> </el-carousel-item> data: () => ({ carouselData:[ {url:require('../assets/a1.png'),title:'你看我叼嗎1',id:1}, {url:require('../assets/a3.png'),title:'你看我叼嗎2',id:2}, {url:require('../assets/a4.png'),title:'你看我叼嗎3',id:3} ] }),
效果如下:
index.vue里面的完整代碼是這個:
<template> <div> <div class=" block"> <el-carousel class="carouselBlock"> <el-carousel-item v-for="item in carouselData" :key="item.id"> <img :src="item.url" class="carouselImg"/> <span class="carouselSpan">{{ item.title }}</span> </el-carousel-item> </el-carousel> </div> <footer1></footer1> <img src="../assets/a1.png" class="" width="100%"/> </div> </template> <script> import footer1 from '../components/public/footer' export default { data: () => ({ carouselData:[ {url:require('../assets/a1.png'),title:'你看我叼嗎1',id:1}, {url:require('../assets/a3.png'),title:'你看我叼嗎2',id:2}, {url:require('../assets/a4.png'),title:'你看我叼嗎3',id:3} ] }), components:{ footer1 }, } </script> <style lang="scss"> @import '../style/mixin'; .carouselBlock{ width: 100%; height: REM(300); position:relative; .carouselImg{ height: REM(300); width:100%; } .carouselSpan{ position: absolute; bottom: REM(20); left: REM(20); font-size: REM(24); font-weight: bold; } } .el-carousel__container{ width: 100%; height: REM(300); } .el-carousel__item h4 { color: #475669; font-size: 14px; opacity: 0.75; margin: 0; } .el-carousel__item:nth-child(2n) { background-color: #99a9bf; } .el-carousel__item:nth-child(2n+1) { background-color: #d3dce6; } </style>
PS:下面看下Vue.js中的圖片引用路徑
當我們在Vue.js項目中引用圖片時,關于圖片路徑有以下幾種情形:
使用一
我們在data里面定義好圖片路徑
imgUrl:'../assets/logo.png'
然后,在template模板里面
<<span class="hljs-title" >img src=" {{imgUrl}}">
這樣是錯誤的寫法,我們應該用v-bind綁定圖片的srcs屬性
:src="imgUrl">
或者
<span class="hljs-title" >img src="../assets/logo.png">
這種方式是按照正常HTML語法引用路徑,放在模板里可以被webpack打包出來。
使用二
當我們需要在js代碼里面寫圖片路徑的時候,如果我們在data里面寫
imgUrl:'../assets/logo.png'
此時webpack只會把它當做字符串處理從而找不到圖片地址,此時我們可以使用import引入圖片路徑:
:src="avatar" /> import avatar from '@/assets/logo.png'
在data里面定義
avatar: avatar
情形三
我們也可以把圖片放在外層的static文件夾里面,然后在data里面定義:
imgUrl : '../../static/logo.png' :src="imgUrl" />
關于“vue中本地靜態圖片路徑怎么寫”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
新聞名稱:vue中本地靜態圖片路徑怎么寫
轉載源于:http://vcdvsql.cn/article48/pdejep.html
成都網站建設公司_創新互聯,為您提供網站內鏈、網站策劃、企業網站制作、域名注冊、、電子商務
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯