kuolemax

Results 15 comments of kuolemax

Maybe we are experiencing the same problem. There is recursive nesting in your pojo, such as including yourself. ```java public class Demo { private List subDemo; } ``` Comment it...

> 有没有试过这样配置: > > ``` > -e XMODIFIERS=@im=fcitx5 \ > -e QT_IM_MODULE=fcitx5 \ > -e GTK_IM_MODULE=fcitx5 > ``` 试过了,结果与我之前的配置一样,输入法显示是rime,但是无法输入中文

> 是装了fcitx5-rime吗,我在manjaro linux上测试了fcitx5(未安装fcitx5-rime)没问题 是的,我安装并在使用fcitx5-rime,还有就是qq会闪退,不清楚具体什么原因,因为有时候在qq界面上右键就会闪退,有时候是点击的时候会闪退,不太清楚具体的闪退原因。

> ``` > -e XMODIFIERS="@im=fcitx" \ > -e QT_IM_MODULE=fcitx5 \ > -e GTK_IM_MODULE=fcitx \ > ``` > > 我这样配置就好了 应该是fcitx-rime比较特殊,这个输入法真是让人又爱又恨

不知道我的方案适不适用于你的情况, 例如我是用 `vue-echarts` 这个库, 需要 `import VChart from vue-echarts` 我配置成这样可以正确使用 ```ts Components({ dts: true, resolvers: [ (componentName: string) => { if (componentName === 'VChart') return 'vue-echarts' }, ], }), ```