This commit is contained in:
kailong321200875
2025-01-09 10:20:32 +08:00
parent 9c91d8d68e
commit 0aca9430c2
14 changed files with 11957 additions and 70 deletions

View File

@@ -13,7 +13,7 @@ export const useNProgress = () => {
await nextTick()
const bar = document.getElementById('nprogress')?.getElementsByClassName('bar')[0] as ElRef
if (bar) {
bar.style.background = unref(primaryColor.value)
bar.style.background = unref(primaryColor.value) as string
}
}

View File

@@ -25,7 +25,7 @@ export const useTable = (config: UseTableConfig) => {
const pageSize = ref(10)
const total = ref(0)
const dataList = ref<any[]>([])
let isPageSizeChange = false
let isPageSizeChange = false
watch(
() => currentPage.value,