You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
项目打包时候,有报错/node_modules/element-ui/types/element-ui.d.ts 319:60 Type 'D' does not satisfy the constraint 'TreeData'.
"typescript": "^4.6.4",
"vue": "2.6.10",
"element-ui": "^2.15.14",
What is Expected?
/** Tree Component */
export class Tree<K = any, D extends TreeData = TreeData> extends ElTree<K, D> {}
What is actually happening?
export class Tree<K = any, D = TreeData> extends ElTree<K, D> {}
The text was updated successfully, but these errors were encountered:
Element UI version
2.15.14
OS/Browsers version
win11 131.0.6778.205
Vue version
2.6.10
Reproduction Link
https://codepen.io/ziyoung/pen/LKNBqB
Steps to reproduce
项目打包时候,有报错/node_modules/element-ui/types/element-ui.d.ts 319:60 Type 'D' does not satisfy the constraint 'TreeData'.
"typescript": "^4.6.4",
"vue": "2.6.10",
"element-ui": "^2.15.14",
What is Expected?
/** Tree Component */
export class Tree<K = any, D extends TreeData = TreeData> extends ElTree<K, D> {}
What is actually happening?
export class Tree<K = any, D = TreeData> extends ElTree<K, D> {}
The text was updated successfully, but these errors were encountered: