如果有错请及时点出,虚心接受各位大佬提醒 ----------- 开发不容易且行且珍惜
显示类似于原生的 table 表格的列形式
export default {
components: {},
name: 'name',
data() {
return {
param: {},
},
created() {
//页面初始化用这个方法
},
</script>
查看代码
<el-descriptions class="margin-top" :column="2" size="medium" border>
<el-descriptions-item>
<template slot="label">
钢种
</template>
{{this.param.gz}}
</el-descriptions-item>
</el-descriptions>