build(projects): update tsconfig、eslintrc

This commit is contained in:
Soybean
2022-03-12 16:21:40 +08:00
parent 4093dcd6dc
commit 75de2b0604
131 changed files with 1174 additions and 1140 deletions

View File

@@ -6,7 +6,7 @@
class="bg-[#e5e7eb] dark:bg-dark h-56px mt-8px px-14px rounded-4px cursor-pointer flex-y-center justify-between"
:style="{
background: item.path === active ? theme.themeColor : '',
color: item.path === active ? '#fff' : ''
color: item.path === active ? '#fff' : '',
}"
@click="handleTo"
@mouseenter="handleMouse(item)"
@@ -48,7 +48,7 @@ const active = computed({
},
set(val: string) {
emit('update:value', val);
}
},
});
/** 鼠标移入 */