1
0

qrcode-login.vue 264 B

12345678910
  1. <script lang="ts" setup>
  2. import { AuthenticationQrCodeLogin } from '@vben/common-ui';
  3. import { LOGIN_PATH } from '@vben/constants';
  4. defineOptions({ name: 'QrCodeLogin' });
  5. </script>
  6. <template>
  7. <AuthenticationQrCodeLogin :login-path="LOGIN_PATH" />
  8. </template>