How does iview table set the filter?

columns2: [{title: "other mobile phone numbers bound by this person", key: "mobile"},

                    {title: "",key: "nameCount"},
                    {title: "",key: "queryOrgCount"},
                    {title: "",key: "mno"},
                    {title: "",key: "addr"},
                    {title: "",key: "appearTime",
                        // render:(h,params)=>{
                        //     return "123+"
                        // }
                    },
        ],
Mar.08,2021

refer to this params.row, which is the object of this line. The content displayed by text can also display buttons and so on

.
{ title: 'title' , key: 'key',
    render: (h, params) => {
        return h("div", "text")
    }
}

Menu