iview 表格组件 添加图片

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/lemisi/article/details/79930648
{
	title: "商品图",
	key: "photo",
	render: (h, params) => {
		console.log(params.row)
		return h('div', {
			attrs: {
				style: 'width: 40px;height: 40px;'
			},
		}, [
		h('img', {
			props: {
				type: 'primary',
				size: 'small'
			},
			attrs: {
				src: params.row.photo, style: 'width: 40px;height: 40px;						},
			style: {
			},
		}),
		]);
	}
},

photo: require("../../assets/img/logo.png"),




猜你喜欢

转载自blog.csdn.net/lemisi/article/details/79930648
今日推荐