<template> <TsButton @click="captchaVisible=true">打开滑块验证码</TsButton> <TsCaptchaModal v-model="captchaVisible" /> </template> <script setup lang="ts"> const captchaVisible = ref(false) </script>