| | |
| | | <script setup lang="ts"> |
| | | import type { Recordable } from '..\..\..\..\..\types\src'; |
| | | import type { Recordable } from '../../../../../types/src'; |
| | | |
| | | import type { VbenFormSchema } from '..\..\..\..\..\@core\ui-kit\form-ui\src'; |
| | | import type { VbenFormSchema } from '../../../../../@core/ui-kit/form-ui/src'; |
| | | |
| | | import type { AuthenticationProps } from './types'; |
| | | |
| | | import { computed, onMounted, reactive, ref } from 'vue'; |
| | | import { useRouter } from 'vue-router'; |
| | | |
| | | import { $t } from '..\..\..\..\..\locales\src'; |
| | | import { $t } from '../../../../../locales/src'; |
| | | |
| | | import { useVbenForm } from '..\..\..\..\..\@core\ui-kit\form-ui\src'; |
| | | import { VbenButton, VbenCheckbox } from '..\..\..\..\..\@core\ui-kit\shadcn-ui\src'; |
| | | import { useVbenForm } from '../../../../../@core/ui-kit/form-ui/src'; |
| | | import { VbenButton, VbenCheckbox } from '../../../../../@core/ui-kit/shadcn-ui/src'; |
| | | |
| | | import Title from './auth-title.vue'; |
| | | import DocLink from './doc-link.vue'; |
| | |
| | | qrCodeLoginPath: '/auth/qrcode-login', |
| | | registerPath: '/auth/register', |
| | | showCodeLogin: true, |
| | | showDocLink: true, |
| | | showForgetPassword: true, |
| | | showQrcodeLogin: true, |
| | | showRegister: true, |
| | |
| | | </slot> |
| | | |
| | | <!-- 萌新必读 --> |
| | | <DocLink /> |
| | | <DocLink v-if="showDocLink" /> |
| | | </div> |
| | | </template> |