Replies: 1 comment
-
|
经过测试不能使用小驼峰的写法 改用 "min-width": "20px", 就可以生效 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
版本: V5.0.49,
可以肯定的时候 点击事件, 容器的边框样式都生效了
{
type: 'tooltip',
width: 40,
trigger: 'click',
enable: (e) => e.targetType === 'node',
position: 'left',
getContent: (e, items) => {
return "左边";
},
style: {
'.tooltip': {
visibility: 'hidden',
minWidth: '20px', // 不生效
minWidth: '20', // 不生效
border: '1px solid #ff7875',
borderRadius: 4,
},
},
},
Beta Was this translation helpful? Give feedback.
All reactions