[Vuejs]-How do I change a cell in the element-ui table? 19 October 2023 by thecoderscamp.com 0👍 you can use this method. <el-table :data="tableData" :cell-style="cellStyle" > </el-table> js const cellStyle = ({ row, column, rowIndex, columnIndex }) => { if (rowIndex === 1 && columnIndex === 1) { return { backgroundColor: 'pink' } } } [Vuejs]-How to call methods from the parent component in child in vuejs [Vuejs]-Vue SSR: resolveComponent can only be used in render() or setup() Source:stackexchange.com