使用vue+Element Plus
后台传来的图片地址如果是完整的没问题!
但是如果仅传路径过来为什么会自动补http://localhost:5173
<el-table-column prop="image" label="礼物图标">
<template v-slot="scope">
<div>{{ scope.row.image }}</div>
<img :src="scope.row.image" style="width: 40px; height: 40px"/>
</template>
</el-table-column>

