admin-vben5/apps/web-antd/src/views/_essential/authentication/login.vue
2024-07-11 21:48:56 +08:00

19 lines
399 B
Vue

<script lang="ts" setup>
import { AuthenticationLogin } from '@vben/universal-ui';
import { useAccessStore } from '#/store';
defineOptions({ name: 'Login' });
const accessStore = useAccessStore();
</script>
<template>
<AuthenticationLogin
:loading="accessStore.loading"
password-placeholder="123456"
username-placeholder="vben"
@submit="accessStore.authLogin"
/>
</template>