We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import React from 'react' import ReactDOM from 'react-dom' import { Radio } from '@kdcloudjs/kdesign' const Demo = () => { function onChange(e) { console.log(`radio checked: ${e.target.value}`) } return ( <div style={{ width: '450px' }}> <Radio.Group onChange={onChange} defaultValue="a"> <Radio.Button value="a" title="SHenzhen">Shenzhen</Radio.Button> <Radio.Button value="b">Shanghai</Radio.Button> <Radio.Button value="c">Beijing</Radio.Button> <Radio.Button value="d">Guangzhou</Radio.Button> </Radio.Group> </div> ) } ReactDOM.render(<Demo />, mountNode)
将此代码贴到任一组件的演示代码中,悬浮到Shenzhen 未显示出提示
组件库与浏览器均为最新版本
The text was updated successfully, but these errors were encountered:
feat: [radio] 添加文字hover的提示title fix kingdee#831
9764f83
9db6341
b4ba85c
No branches or pull requests
重现链接或代码
重现问题步骤
将此代码贴到任一组件的演示代码中,悬浮到Shenzhen 未显示出提示
期望的结果是什么
实际的结果是什么
组件库版本号、浏览器信息
组件库与浏览器均为最新版本
The text was updated successfully, but these errors were encountered: