hookehuyr

fix

...@@ -7,6 +7,7 @@ export {} ...@@ -7,6 +7,7 @@ export {}
7 /* prettier-ignore */ 7 /* prettier-ignore */
8 declare module 'vue' { 8 declare module 'vue' {
9 export interface GlobalComponents { 9 export interface GlobalComponents {
10 + '图形验证码': typeof import('./src/components/图形验证码.vue')['default']
10 Agreement: typeof import('./src/components/DonateFlower/agreement.vue')['default'] 11 Agreement: typeof import('./src/components/DonateFlower/agreement.vue')['default']
11 AuditVideoCard: typeof import('./src/components/AuditVideoCard/index.vue')['default'] 12 AuditVideoCard: typeof import('./src/components/AuditVideoCard/index.vue')['default']
12 Banner: typeof import('./src/components/MuiVideo/banner.vue')['default'] 13 Banner: typeof import('./src/components/MuiVideo/banner.vue')['default']
...@@ -65,6 +66,5 @@ declare module 'vue' { ...@@ -65,6 +66,5 @@ declare module 'vue' {
65 VideoBar: typeof import('./src/components/MuiVideo/videoBar.vue')['default'] 66 VideoBar: typeof import('./src/components/MuiVideo/videoBar.vue')['default']
66 VideoCard: typeof import('./src/components/VideoCard/index.vue')['default'] 67 VideoCard: typeof import('./src/components/VideoCard/index.vue')['default']
67 VideoDetail: typeof import('./src/components/VideoDetail/index.vue')['default'] 68 VideoDetail: typeof import('./src/components/VideoDetail/index.vue')['default']
68 - '图形验证码': typeof import('./src/components/图形验证码.vue')['default']
69 } 69 }
70 } 70 }
......
...@@ -78,7 +78,6 @@ const props = defineProps({ ...@@ -78,7 +78,6 @@ const props = defineProps({
78 }) 78 })
79 79
80 onMounted(() => { 80 onMounted(() => {
81 - console.warn('item', props.item);
82 nextTick(() => { 81 nextTick(() => {
83 let canvasDom = canvasRef.value; 82 let canvasDom = canvasRef.value;
84 ref_width.value = canvasDom.offsetWidth + 'px'; 83 ref_width.value = canvasDom.offsetWidth + 'px';
......