<template v-for="(item, index) in columns">
	<el-table-column
		:prop="item.prop" 
		:key="index" 
		align="center"
		:width="item.width || '' "
		:label="item.label"
		v-if="item.show"
	>
	</el-table-column>
</template>
Last Updated:
Contributors: pengrengui