10 lines
193 B
Vue
10 lines
193 B
Vue
|
|
<script lang="ts" setup>
|
||
|
|
import { AuthenticationQrCodeLogin } from '@vben/common-ui';
|
||
|
|
|
||
|
|
defineOptions({ name: 'QrCodeLogin' });
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<AuthenticationQrCodeLogin />
|
||
|
|
</template>
|