We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54e7d6d commit 86da767Copy full SHA for 86da767
src/views/_builtin/login/modules/pwd-login.vue
@@ -107,7 +107,13 @@ async function handleAccountLogin(account: Account) {
107
</div>
108
<NDivider class="text-14px text-#666 !m-0">{{ $t('page.login.pwdLogin.otherAccountLogin') }}</NDivider>
109
<div class="flex-center gap-12px">
110
- <NButton v-for="item in accounts" :key="item.key" type="primary" @click="handleAccountLogin(item)">
+ <NButton
111
+ v-for="item in accounts"
112
+ :key="item.key"
113
+ :loading="authStore.loginLoading"
114
+ type="primary"
115
+ @click="handleAccountLogin(item)"
116
+ >
117
{{ item.label }}
118
</NButton>
119
0 commit comments