Commit 5d526edabd16bbbc8ae8077b22a0cba55851df66

Authored by xp.Huang
2 parents 5596d043 2c3b0613

Merge branch 'cherry-pick-1e7cf43a' into 'main'

fix: 修复vue版本不同时ExtractPropTypes类型找不到

See merge request yunteng/thingskit-front!644
@@ -65,7 +65,7 @@ @@ -65,7 +65,7 @@
65 "tinymce": "^5.8.2", 65 "tinymce": "^5.8.2",
66 "vditor": "^3.8.6", 66 "vditor": "^3.8.6",
67 "video.js": "^7.20.3", 67 "video.js": "^7.20.3",
68 - "vue": "^3.2.31", 68 + "vue": "3.2.31",
69 "vue-i18n": "9.1.7", 69 "vue-i18n": "9.1.7",
70 "vue-json-pretty": "^2.0.4", 70 "vue-json-pretty": "^2.0.4",
71 "vue-router": "^4.0.11", 71 "vue-router": "^4.0.11",
@@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
3 import { computed, ExtractPropTypes, unref } from 'vue'; 3 import { computed, ExtractPropTypes, unref } from 'vue';
4 import { usePermission } from '/@/hooks/web/usePermission'; 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 auth?: string; 7 auth?: string;
8 disabled?: boolean; 8 disabled?: boolean;
9 } 9 }