Home > Web Front-end > Vue.js > body text

How to insert vue.js pictures

coldplay.xixi
Release: 2020-11-17 15:28:36
Original
3950 people have browsed it

Vue.js image insertion method: 1. Save the image path in data; 2. Directly access the image path in the function method; 3. Put the image in a json file, and then json files are referenced in the vue page.

How to insert vue.js pictures

[Related article recommendations: vue.js]

vue.js image insertion Method:

Method 1: Save the image path in 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'
          }
        ]
Copy after login

Method 2: Directly access the image path in the function method

let src = require('../../assets/homeImg/home_icon1.png');
Copy after login

Method 3 : Put the pictures in a json file, and then reference the json file in the vue page

import imgs from "../../static/json/img.json"
export default {
data () {
return {
imgList: imgs.images
}
}
}
Copy after login

Related free learning recommendations: javascript (video)

The above is the detailed content of How to insert vue.js pictures. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!