在js和template中引入图片资源需要使用require
table中显示图片,路径要用绝对路径,写死的图片 要用require
<el-table-column
label="缩略图">
<template slot-scope="scope">
style="width: 100px; height: 100px"
:src="picture"
fit="contain">
</el-table-column>
script部分:
data () {
return {
picture: require('@/assets/bcg3.png')
}
}