AntiBotDialog.client.vue 289 B

12345678910111213141516171819202122
  1. <template>
  2. <div>
  3. {{ $t('anti-bot-test')}}
  4. <altcha-widget
  5. ref="altchaWidget"
  6. style="--altcha-max-width:100%"
  7. debug
  8. test
  9. ></altcha-widget>
  10. </div>
  11. </template>
  12. <script setup lang="ts">
  13. import 'altcha';
  14. </script>
  15. <style scoped lang="scss">
  16. </style>