How do I render different components for each line in table?

can table of iview nest input, select, and inputNumber like this?

Mar.29,2021

Yes, you can use the render function to render any component you want.
for example, the first line can be written like this:

render(h,params){
    if(params.row===1){
        return h('Input',{})
    }else if(){render}
}

if you can't write the render function, I suggest you learn how to write the render function first. There is a complete configuration on the vue official website.

Menu