首页 > 其他分享 >关于el-descriptions-item自定义使用方法

关于el-descriptions-item自定义使用方法

时间:2022-12-13 10:59:15浏览次数:63  
标签:el name 自定义 param item descriptions

如果有错请及时点出,虚心接受各位大佬提醒 ----------- 开发不容易且行且珍惜

显示类似于原生的 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>

标签:el,name,自定义,param,item,descriptions
From: https://www.cnblogs.com/cjmbk/p/16977943.html

相关文章