fix: lint

This commit is contained in:
xingyu4j
2025-11-17 12:15:14 +08:00
parent 655ce2c2e8
commit bed52983a0
135 changed files with 203 additions and 215 deletions

View File

@@ -35,7 +35,7 @@ function handleUpdate(len: number) {
<div
v-for="item in list"
:key="item"
class="even:bg-heavy bg-muted flex-center h-[220px] w-full"
class="flex-center h-[220px] w-full bg-muted even:bg-heavy"
>
{{ item }}
</div>

View File

@@ -56,7 +56,7 @@ const leftMaxWidth = ref(props.leftMaxWidth || 100);
<div
v-else
:style="{ minWidth: '200px' }"
class="border-border bg-card mr-2 rounded-[var(--radius)] border p-2"
class="mr-2 rounded-[var(--radius)] border border-border bg-card p-2"
>
<p>这里是左侧内容</p>
<p>这里是左侧内容</p>

View File

@@ -51,7 +51,7 @@ const loadingV = refAutoReset(false, 3000);
<template #icon>
<IconifyIcon
icon="svg-spinners:ring-resize"
class="text-primary size-10"
class="size-10 text-primary"
/>
</template>
</Loading>
@@ -65,7 +65,7 @@ const loadingV = refAutoReset(false, 3000);
<template #icon>
<IconifyIcon
icon="svg-spinners:bars-scale"
class="text-primary size-10"
class="size-10 text-primary"
/>
</template>
</Loading>

View File

@@ -38,7 +38,7 @@ function handleUpdate(len?: number) {
<div
v-for="item in list"
:key="item"
class="even:bg-heavy bg-muted flex-center h-[220px] w-full"
class="flex-center h-[220px] w-full bg-muted even:bg-heavy"
>
{{ item }}
</div>

View File

@@ -291,7 +291,7 @@ function goDoc() {
<Form class="mt-4" />
<template #actions>
<p
class="text-secondary-foreground hover:text-secondary-foreground cursor-default"
class="cursor-default text-secondary-foreground hover:text-secondary-foreground"
>
更多配置请
<Button type="link" size="small" @click="goDoc">查看文档</Button>