iview renderHeader()

iview renderHeader()

// Tooltip提示
{
    title: '一级', // 9th
    align: 'center',
    children: [
        {
            title: '二级',
            key: 'erji',
            align: 'center',
             100,
            renderHeader: (h, params) => {
                return h('div', [
                    h('Tooltip', {
                        props: {
                            content: '二级浮动提示内容',
                            placement: 'top',
                            transfer: true,
                            maxWidth: '220',
                            theme: 'light'
                        },
                        class: 'm-tooltip-overflow'
                    }, [
                        h('Icon', {
                            props: {
                                type: 'ios-information-empty',
                                color: '#495060',
                                size: 'medium'
                            },
                            style: {
                                marginRight: '2px'
                            }
                        }),
                        h('span', '字段名称')
                    ])
                ]);
                // return h('Tooltip', {
                //     props: {
                //         content: '提示内容',
                //         placement: 'top',
                //         transfer: true,
                //         maxWidth: '220',
                //         theme: 'light'
                //     },
                //     class: 'm-tooltip-overflow'
                // }, '字段名称');
            }
        },
        {
            title: '二级',
            key: 'erji',
            align: 'center',
             100
        },
        {
            title: '二级',
            key: 'erji',
            align: 'center',
             100
        },
        {
            title: '二级',
            key: 'erji',
            align: 'center',
             80
        },
        {
            title: '二级',
            key: 'erji',
            align: 'center',
             100
        }
    ]
},

end.

原文地址:https://www.cnblogs.com/wn798/p/12120065.html