Let's take a look at the dynamic splicing of img in Vue: src picture address, the specific content is as follows: Usage scenario: Match local image resources according to the image tag returned by the backend. For example: According to the k1 tag returned by the backend, the front end generates the image resource path assets/images/inventory/k1.png <template> <div class="fl"> <img :src="getImgUrl(gatherInfo.img1)" alt=""> <img :src="getImgUrl(gatherInfo.img2)" alt=""> <img :src="getImgUrl(gatherInfo.img3)" alt=""> </div> </template> data(){ return { gatherInfo: title: 'Inventory summary information', img1: 'k1', img2: 'k2', img3: 'k3', }, } } In methods //Get the image address getImgUrl (img) { return require("@/assets/images/inventory/" + img+ ".png"); }, This is the end of this article about dynamic splicing of img in Vue: src image address. For more relevant vue img dynamic splicing content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to configure MySQL8 in Nacos
>>: How to install tomcat in docker and deploy the Springboot project war package
Docker-compose deployment configuration jenkins 1...
1. Import echart in HTML file <!-- Import echa...
Vulnerability Details VSFTP is a set of FTP serve...
html: In fact, it is to arrange several solid cir...
From handicraft design to graphic design to web de...
Copy code The code is as follows: <html xmlns=...
JSON (JavaScript Object Notation, JS Object Notat...
Relationship between MySQL and MariaDB MariaDB da...
This article mainly introduces the detailed proce...
Solution to "Could not run curl-config"...
Table of contents Update the image from an existi...
The commonly used Oracle10g partitions are: range...
I mainly introduce how to develop a lucky wheel g...
Let me briefly describe some common basic graphic...
Table of contents Why optimize? ? Where to start?...