{ title: '狀態', key: 'shopAtive', align: 'center', render: (h, params) => { let resultStr = '' if(params.row.shopAtive === 1){ resultStr = '營業中' }else if(params.row.shopAtive === 0){ resultStr = '休息中' } return h('div',resultStr); } }
shopAtive 的狀態為0,1渲染不同的數據