2024-05-19 21:20:42 +08:00
|
|
|
<script lang="ts" setup>
|
2024-06-16 23:20:09 +08:00
|
|
|
import { AuthenticationLogin } from '@vben/universal-ui';
|
2024-06-01 23:15:29 +08:00
|
|
|
|
2024-07-05 23:15:46 +08:00
|
|
|
import { useAccessStore } from '#/store';
|
2024-06-16 23:40:52 +08:00
|
|
|
|
2024-05-19 21:20:42 +08:00
|
|
|
defineOptions({ name: 'Login' });
|
|
|
|
|
|
|
|
const accessStore = useAccessStore();
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2024-06-02 21:21:34 +08:00
|
|
|
<AuthenticationLogin
|
2024-07-05 23:15:46 +08:00
|
|
|
:loading="accessStore.loading"
|
2024-06-09 13:31:43 +08:00
|
|
|
password-placeholder="123456"
|
|
|
|
username-placeholder="vben"
|
2024-07-11 21:48:56 +08:00
|
|
|
@submit="accessStore.authLogin"
|
2024-06-02 21:21:34 +08:00
|
|
|
/>
|
2024-05-19 21:20:42 +08:00
|
|
|
</template>
|