Ask how to write slot in the render function of iview.

version: "version": "1.1.4",
problem description: in the table header, if you want to add the Tooltip component, if the Tooltip component does not use the slot slot, it will display normally, but when the content to be displayed is too much, using slot according to the document will cause problems. Is there any way to solve it? thank you very much.
Code part:
1. If you want to display the content, it will not be a problem if you can write it this way.

{ title: "", key: "RechageCount", align: "center", renderHeader: (h, params) =>{ 
    return h("Tooltip", { 
        props: { 
            content: "////", placement: "top" 
        } 
    }, "") } 
}

2, when the content to be displayed is too long, write like this, there is no content in the bug, suspension layer, and the header will display all the contents of these two tags, is it because slot cannot be written in props as attributes? Seek the correct writing

{ title: "", key: "RechageCount", align: "center", renderHeader: (h, params) ={
    return h("Tooltip", { 
        props: { placement: "top" } 
    }, [ 
    h("span", ""), 
    h("div", { 
        props: { slot: "content" }, 
        style: { widthSpace: "normal" } 
    }, "*") ])
    }
}
Feb.26,2021

props: {},
slot: ''

put it at the same level

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b22913-4e292.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b22913-4e292.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?