低版本浏览器at函数兼容性调整为应用级生效

This commit is contained in:
Allen
2024-04-15 01:52:17 +00:00
parent b07e5eecc3
commit 2c3ecfeb6f
2 changed files with 5 additions and 4 deletions

View File

@@ -5,7 +5,6 @@ import { useToast } from 'vue-toast-notification'
import api from '@/api'
import type { TransferHistory } from '@/api/types'
import ReorganizeForm from '@/components/form/ReorganizeForm.vue'
import { fixArrayAt } from '@/@core/utils/compatibility'
// 提示框
const $toast = useToast()
@@ -351,9 +350,6 @@ const dropdownItems = ref([
},
},
])
// 修复低版本Safari等浏览器数组不支持at函数的问题
fixArrayAt()
</script>
<template>