Vue 动态表格 和 插入自定义表头

直接上代码


    
    
    
        
    
// 表格数据
templateData: [],
// 表格遍历
tableHeaders: [
    { label: 'Description', prop: 'Des', width: 'auto', minWidth: 150 },
    { label: 'Create Time', prop: 'CreateTime', width: 'auto'},
    { label: 'End Time', prop: 'FinishedTime', width: 'auto'},
    { label: 'Creator', prop: 'CreateUser', width: 'auto'},
    { label: 'Progress', prop: 'per', width: 'auto'},
    { label: 'Actions', prop: 'Actions', width: '80'}
],
// 过滤表格
filters: [
    { text: 'Description', value: 'Des'},
    { text: 'Create Time', value: 'CreateTime'},
    { text: 'End Time', value: 'FinishedTime'},
    { text: 'Creator', value: 'CreateUser'},
    { text: 'Progress', value: 'per'},
    { text: 'Actions', value: 'Actions'},
]

 

你可能感兴趣的:(js,Vue)