main.js
// 静态资源访问路径(https://eventimg.oss-cn-shanghai.aliyuncs.com/activity_h5为路径一样的那部分)
Vue.prototype.H5_IMG_HOST = `https://eventimg.oss-cn-shanghai.aliyuncs.com`
页面使用
//H5_IMG_HOST为main.js中Vue.prototype.H5_IMG_HOST中的最后一个单词,这个命名可以自定义
<template>
<div>
<img class="icon" :src="`${H5_IMG_HOST}/activity/blue_address_icon.png`" alt />
</div>
</template>