{
title: '操作',
key: 'action',
width: 250,
align: 'center',
render: (h, params) => {
return h('div', [
h('a', {
props: {
},
style: {
marginRight: '10px'
},
on: {
click:()=>{
const downLoad=params.row.filename;
}
}
}, '下载'),
]);
}
}
怎么给a设置,能够下载文件,download是后台传过来的文件相对路径
直接把下载文件路径写作href属性上就可以吧