style(projects): format code

This commit is contained in:
Soybean
2023-12-14 21:45:29 +08:00
parent a176dc443e
commit a748166399
127 changed files with 2472 additions and 3006 deletions

View File

@ -3,7 +3,7 @@ import { reactive } from 'vue';
import { $t } from '@/locales';
import { loginModuleRecord } from '@/constants/app';
import { useRouterPush } from '@/hooks/common/router';
import { useNaiveForm, useFormRules } from '@/hooks/common/form';
import { useFormRules, useNaiveForm } from '@/hooks/common/form';
import { useAuthStore } from '@/store/modules/auth';
defineOptions({
@ -48,7 +48,7 @@ async function handleSubmit() {
:placeholder="$t('page.login.common.passwordPlaceholder')"
/>
</NFormItem>
<NSpace :vertical="true" :size="24">
<NSpace vertical :size="24">
<div class="flex-y-center justify-between">
<NCheckbox>{{ $t('page.login.pwdLogin.rememberMe') }}</NCheckbox>
<NButton quaternary>{{ $t('page.login.pwdLogin.forgetPassword') }}</NButton>

View File

@ -13,9 +13,7 @@ import ResetPwd from './components/reset-pwd.vue';
import BindWechat from './components/bind-wechat.vue';
interface Props {
/**
* the login module
*/
/** The login module */
module?: UnionKey.LoginModule;
}