diff --git a/src/layouts/default/setting/components/SelectItem.vue b/src/layouts/default/setting/components/SelectItem.vue
index dec8ec9..7eb9886 100644
--- a/src/layouts/default/setting/components/SelectItem.vue
+++ b/src/layouts/default/setting/components/SelectItem.vue
@@ -43,4 +43,3 @@ function handleChange(e) {
-
diff --git a/src/layouts/default/sider/MixSider.vue b/src/layouts/default/sider/MixSider.vue
index e8fbf40..d1ce065 100644
--- a/src/layouts/default/sider/MixSider.vue
+++ b/src/layouts/default/sider/MixSider.vue
@@ -72,7 +72,6 @@ const getIsFixed = computed(() => {
return isFixed
})
-
const getDomStyle = computed((): CSSProperties => {
const fixedWidth = unref(getIsFixed) ? unref(getRealWidth) : 0
const width = `${unref(getMixSideWidth) + fixedWidth}px`
diff --git a/src/types/module.d.ts b/src/types/module.d.ts
index f959d62..d464833 100644
--- a/src/types/module.d.ts
+++ b/src/types/module.d.ts
@@ -9,7 +9,7 @@ declare module 'ant-design-vue/es/locale/*' {
import type { Locale } from 'ant-design-vue/types/locale-provider'
const locale: Locale & ReadonlyRecordable
- export default locale
+ export default locale
}
declare module 'virtual:*' {
diff --git a/src/utils/domUtils.ts b/src/utils/domUtils.ts
index e627afa..94517b4 100644
--- a/src/utils/domUtils.ts
+++ b/src/utils/domUtils.ts
@@ -167,7 +167,7 @@ export function useRafThrottle
(fn: T): T {
window.requestAnimationFrame(() => {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-expect-error
- // eslint-disable-next-line @typescript-eslint/no-invalid-this
+ // eslint-disable-next-line @typescript-eslint/no-invalid-this
fn.apply(this, args)
locked = false
})
diff --git a/src/utils/index.ts b/src/utils/index.ts
index 1b24389..3e2d8b0 100644
--- a/src/utils/index.ts
+++ b/src/utils/index.ts
@@ -94,6 +94,7 @@ export function openWindow(url: string, opt?: { target?: TargetContext | string;
export function getDynamicProps, U>(props: T): Partial {
const ret: Recordable = {}
+ // eslint-disable-next-line array-callback-return
Object.keys(props).map((key) => {
ret[key] = unref((props as Recordable)[key])
})