加在props里是不生效的拱燃,應該加在attrs里神郊,iview官網(wǎng)沒有提這個讥裤,可以去render文檔里查看。
? ? ? ? ? ? h('i-button', {
? ? ? ? ? ? ? ? props: {
? ? ? ? ? ? ? ? ? type: `${detailBtn.btnType}`,
? ? ? ? ? ? ? ? ? size: 'small',
? ? ? ? ? ? ? ? ? icon: `${detailBtn.btnIcon}`
? ? ? ? ? ? ? ? },
? ? ? ? ? ? ? ? attrs: {
? ? ? ? ? ? ? ? ? title: `${detailBtn.title}`
? ? ? ? ? ? ? ? },
? ? ? ? ? ? ? ? style: {
? ? ? ? ? ? ? ? ? marginRight: '3px'
? ? ? ? ? ? ? ? },
? ? ? ? ? ? ? ? on: {
? ? ? ? ? ? ? ? ? click: () => {
? ? ? ? ? ? ? ? ? ? self.showDetail(detailBtn.key)
? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? })