2 天以前 3e71d77e7809a709ca2015306ab7ef7935dc82d7
src/packages/effects/common-ui/src/ui/authentication/login.vue
@@ -45,7 +45,7 @@
});
const emit = defineEmits<{
  submit: [Recordable<any>];
  submit: [Recordable<unknown>];
  thirdLogin: [type: number];
}>();
@@ -108,7 +108,7 @@
    <slot name="title">
      <Title>
        <slot name="title">
          {{ title || `${$t('authentication.welcomeBack')} 👋🏻` }}
          {{ title || $t('authentication.welcomeBack') }}
        </slot>
        <template #desc>
          <span class="text-muted-foreground">
@@ -124,7 +124,7 @@
    <div
      v-if="showRememberMe || showForgetPassword"
      class="mb-6 flex justify-between"
      class="mb-7 flex items-center justify-between"
    >
      <div class="flex-center">
        <VbenCheckbox
@@ -150,7 +150,7 @@
      }"
      :loading="loading"
      aria-label="login"
      class="w-full"
      class="h-11 w-full rounded-xl text-base font-semibold shadow-sm transition-shadow duration-200 hover:shadow-md focus-visible:ring-2 focus-visible:ring-primary/40"
      @click="handleSubmit"
    >
      {{ submitButtonText || $t('common.login') }}