[Vuejs]-Why can't my table component render the value processed by the render function passed in?

1👍

You can try using <component>

<span v-if="column.render">
   <component :is="column.render(item)"></component>
</span>
👤Walens

Leave a comment