About the problem of dynamic splicing src image address of img in Vue

About the problem of dynamic splicing src image address of img in Vue

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:
  • Vue render function dynamically loads img's src path operation
  • Use vue to dynamically splice urls through variables
  • Some experience on dynamic splicing of vue src path

<<:  How to configure MySQL8 in Nacos

>>:  How to install tomcat in docker and deploy the Springboot project war package

Recommend

Detailed tutorial on docker-compose deployment and configuration of Jenkins

Docker-compose deployment configuration jenkins 1...

How to use bar charts in Vue and modify the configuration yourself

1. Import echart in HTML file <!-- Import echa...

Detailed analysis of compiling and installing vsFTP 3.0.3

Vulnerability Details VSFTP is a set of FTP serve...

Some key points of website visual design

From handicraft design to graphic design to web de...

HTML css js implements Tab page sample code

Copy code The code is as follows: <html xmlns=...

Best way to replace the key in json object

JSON (JavaScript Object Notation, JS Object Notat...

How to install MySQL and MariaDB in Docker

Relationship between MySQL and MariaDB MariaDB da...

Detailed explanation of browser negotiation cache process based on nginx

This article mainly introduces the detailed proce...

How to solve the error of PyCurl under Linux

Solution to "Could not run curl-config"...

Two ways to build Docker images

Table of contents Update the image from an existi...

How to implement a lucky wheel game in WeChat applet

I mainly introduce how to develop a lucky wheel g...

Example code showing common graphic effects in CSS styles

Let me briefly describe some common basic graphic...

Introduction to MySQL database performance optimization

Table of contents Why optimize? ? Where to start?...