Commit 5d526edabd16bbbc8ae8077b22a0cba55851df66
Merge branch 'cherry-pick-1e7cf43a' into 'main'
fix: 修复vue版本不同时ExtractPropTypes类型找不到 See merge request yunteng/thingskit-front!644
Showing
2 changed files
with
2 additions
and
2 deletions
... | ... | @@ -3,7 +3,7 @@ |
3 | 3 | import { computed, ExtractPropTypes, unref } from 'vue'; |
4 | 4 | import { usePermission } from '/@/hooks/web/usePermission'; |
5 | 5 | |
6 | - interface AuthIconProps extends ExtractPropTypes<typeof Icon> { | |
6 | + interface AuthIconProps extends /* @vue-ignore */ ExtractPropTypes<typeof Icon> { | |
7 | 7 | auth?: string; |
8 | 8 | disabled?: boolean; |
9 | 9 | } | ... | ... |