iView的Tabs 标签页组件里,里面的label想用render动态设置label的文字,render函数并可以接收参数,tabLabel可以使用参数,如下:
<!--根据items动态生成多个TabPane--> <TabPane :label="tabLabel(item, index)" v-for="(item, index) in items"> </TabPane>
tabLabel: function (item, index) { return function (h) { return h('div', [ h('span', {class: 'navbar-item-content'}, '第' + (index + 1) + '项'), h('Badge', { props: { count: 3 } }) ]) } },
文章评论