rongxin

Results 10 comments of rongxin

我这里遇到的问题 是设置了国际化 但是不展示 设置了dayjs的国际化之后 这个问题自然解决了

> 没有任何报错,但是就是没有出现 我也是

I have same question

@kyro95 has you solve it?

> I think vite is issuing this bug, i've found a temp workaround, you have to play with react states and timers to make appear/disappear the context menu. I try...

@kyro95 👍 Thank you. Using this code, it works. Share my implementation. ```tsx const Component = () => { useEffect(() => { window.onmousedown = handleMouseDown; }, [render, setRender]); const handleMouseDown...

> #3273 change file with this PR. I solve my problem.

遇到了 相同的问题,如果在回调函数中使用setFieldValue/setFieldsValue会导致更新不会中断,导致死循环。使用 Form.useWatch 处理了,如果有人有更好的方式 捞一下