在美国服务器的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’)