+
{{ item.raw.description }}
-import { isIntersected } from '@/@core/utils'
+import { ref } from 'vue'
import api from '@/api'
import type { Context } from '@/api/types'
import TorrentCard from '@/components/cards/TorrentCard.vue'
@@ -15,13 +15,15 @@ const props = defineProps({
type: String,
})
+interface SearchTorrent extends Context {
+ more?: Array
+}
+
// 数据列表
-const dataList = ref([])
+const dataList = ref >([])
// 分组后的数据列表
-const groupedDataList = computed(() => {
- return groupByTitleAndSize(dataList.value)
-})
+const groupedDataList = ref