iview renderHeader()
// Tooltip提示 { title: '一級', // 9th align: 'center', children: [ { title: '二級', key: 'erji', align: 'center', width: 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', width: 100 }, { title: '二級', key: 'erji', align: 'center', width: 100 }, { title: '二級', key: 'erji', align: 'center', width: 80 }, { title: '二級', key: 'erji', align: 'center', width: 100 } ] },
end.