admin-vben5/apps/web-antd/src/views/_essential/authentication/login.vue

19 lines
399 B
Vue
Raw Normal View History

2024-05-19 21:20:42 +08:00
<script lang="ts" setup>
import { AuthenticationLogin } from '@vben/universal-ui';
2024-06-01 23:15:29 +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>
<AuthenticationLogin
: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-05-19 21:20:42 +08:00
</template>