qiang

Results 144 comments of qiang

This fixed by element-plus v1.8.0

Perhaps you should check if the `element-plus` component library is installed

抱歉我没有使用yarn,我使用pnpm完全正常。 你可以检查下相关配置,例如 ``` // .npmrc shamefully-hoist=true ```

How about this? ```ts vite: { optimizeDeps: { include: [ 'element-plus/es/components/*/index', 'element-plus/es/components/*/style/index', // or 'element-plus/es/components/*/style/css' ], }, }, ```

After updating to the latest version (1.0.10), the reloading issue will be optimized, at the cost of a significant increase in the number of requests. You can choose to update...

@myronliu347 Do you have time to deal with relevant conflicts?

IMO, If a manually rendered function can be expose from the ElTooltip component and executed once on onMounted based on persistence and initial values in related components such as ElTreeSelect,...

如果像现在这样改动,所有的情况下初始都会渲染一次。感觉这样引起的不必要开销太大。 如果为 ElTooltip 设计一个类似 `immediateRender` 的 api,让使用的组件自己控制是不是需要初始渲染,这样就可以把开销限制在 1. persistent 为 false 2. 组件有初始值 3. 通过子组件收集信息的组件 其它 persistent 为 false 的情况可以避免不必要的开销

Thank for your contribution. I noticed that wzc520pyfm has already made relevant modifications. Link #10754