index.vue 231 B

1234567891011
  1. <template>
  2. <app-auth-component :code="code" direction="bottom" />
  3. </template>
  4. <script lang="ts" setup>
  5. import AppAuthComponent from '@pc/components/modules/auth-component/index.vue'
  6. defineProps({
  7. code: String
  8. })
  9. </script>