美文网首页
vxe-table中如何对表格进行渲染

vxe-table中如何对表格进行渲染

作者: Magna | 来源:发表于2021-08-29 08:32 被阅读0次
    tableColumn: [
            { 
              type: 'checkbox',
              width: 60 },  //第一列
            { 
              field: 'truename', 
              title: 'Name', 
              width: 200, 
              resizable: false, 
              slots: { header: 'name_header' } },   //姓名列
            {
              field: `time`,
              title: '时间戳',
              width: 200,
              formatter: this.formatDataStamp   //这是渲染的关键!
              },
          ]
    
    
    

    [链接:](https://www.yuque.com/docs/share/f8840554-0131-41a3-8125-49f99d4b0ba9?# 《vxe-table中如何对表格进行渲染》)

    相关文章

      网友评论

          本文标题:vxe-table中如何对表格进行渲染

          本文链接:https://www.haomeiwen.com/subject/sjdwiltx.html