在vue中動態引入img標簽的方法:1.新建vue.js項目;2.添加img標簽并提供地址;3.配置config.js文件;4.在項目中應用配置文件;
具體步驟如下:
1.首先,在vue-cli中創建一個vue.js項目;
vue create project-name
2.vue.js項目創建好后,在項目中添加一個img標簽,并提供圖片地址;
<div><img :src=image_path />
</div>
3.img標簽添加好后,在config.js文件中進行以下配置;
'use strict'
module.exports = {
IMAGE_PATH: '/static/img/hello.png',
}
4.最后,config.js文件配置好后,在項目中應用配置文件即可;
const configConstants = require('static/js/config.js')