79573947

Date: 2025-04-14 20:18:58
Score: 0.5
Natty:
Report link
<Celll
  v-for="(col, colIndex) in columns"
  :key="colIndex"
  :col="col" // add this
  :row="row"
<script>
import { h } from 'vue';

export default {
  props: {
    col: {
      type: Object,
      required: true,
    },
    row: {
      type: Object,
      required: true,
    },
  },
  render() {
    return h('td', null, this.col.children.defaul(this.row));
  },
};
</script>
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: magistr4815