🐛 版本过滤

This commit is contained in:
刘嘉伟 2023-11-27 17:05:09 +08:00
parent 7c10ad1341
commit 563374a4be

View File

@ -9,14 +9,16 @@ defineComponent({
name: "Download" name: "Download"
}); });
type Asset = {
name: string
}
type Version = { type Version = {
id: string; id: string;
name: string; name: string;
published_at: string; published_at: string;
download_completed: boolean; download_completed: boolean;
assets: Array<{ assets: Asset[]
name: string;
}>[]
}; };
const versions = ref<Array<Version>>([]); const versions = ref<Array<Version>>([]);