<template>
<div class="captcha-modal-demo">
<TsButton @click="captchaVisible = true">打开滑块验证码</TsButton>
<TsCaptchaModal v-model="captchaVisible" />
</div>
</template>
<script setup lang="ts">
import { ref } from 'vue';
import TsCaptchaModal from '@/components/captcha-modal/index.vue';
const captchaVisible = ref(false);
</script>