This commit is contained in:
dap 2025-02-20 18:26:39 +08:00
commit 98d5d607b6
2 changed files with 6 additions and 4 deletions

View File

@ -174,7 +174,7 @@ export async function javascript(): Promise<Linter.Config[]> {
],
'no-use-before-define': [
'error',
{ classes: false, functions: false, variables: true },
{ classes: false, functions: false, variables: false },
],
'no-useless-backreference': 'error',
'no-useless-call': 'error',

View File

@ -1,12 +1,14 @@
<script setup lang="ts">
import type { VbenFormSchema } from '@vben-core/form-ui';
import { $t } from '@vben/locales';
import { useVbenForm } from '@vben-core/form-ui';
import { VbenButton } from '@vben-core/shadcn-ui';
import { computed, reactive } from 'vue';
import { useRouter } from 'vue-router';
import { $t } from '@vben/locales';
import { useVbenForm } from '@vben-core/form-ui';
import { VbenButton } from '@vben-core/shadcn-ui';
import Title from './auth-title.vue';
interface Props {