generateLinkClass参数的值怎么传递的?
来源:3-5 切换Tab组件
Riddle2000
2019-07-19
在ViewTab.js,有这样一段代码
添加了两段打印,但是在点击List或Chart tab的时候,这两行内容都没有打印出来
那两个tab到底是什么时候被active的?
const generateLinkClass = (current, view) => {
console.log('here')
console.log(current)
return (current === view) ? 'nav-link active' : 'nav-link'
}
参数current的值是从那里被传递过去的?
写回答
1回答
-
cpen5
2019-07-20
应该是Tab.js传递过去的
00
相似问题