橙子
2 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
3 additions and
3 deletions
-
packages/effects/common-ui/src/components/captcha/slider-captcha/index.vue
|
|
@ -50,9 +50,9 @@ defineExpose({ |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
const wrapperRef = useTemplateRef<HTMLDivElement>('wrapperRef'); |
|
|
const wrapperRef = useTemplateRef<HTMLDivElement>('wrapperRef'); |
|
|
const barRef = useTemplateRef<typeof SliderCaptchaBar>('barRef'); |
|
|
const barRef = useTemplateRef<InstanceType<typeof SliderCaptchaBar>>('barRef'); |
|
|
const contentRef = useTemplateRef<typeof SliderCaptchaContent>('contentRef'); |
|
|
const contentRef = useTemplateRef<InstanceType<typeof SliderCaptchaContent>>('contentRef'); |
|
|
const actionRef = useTemplateRef<typeof SliderCaptchaAction>('actionRef'); |
|
|
const actionRef = useTemplateRef<InstanceType<typeof SliderCaptchaAction>>('actionRef'); |
|
|
|
|
|
|
|
|
watch( |
|
|
watch( |
|
|
() => state.isPassing, |
|
|
() => state.isPassing, |
|
|
|