🐛 版本过滤

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"
});
type Asset = {
name: string
}
type Version = {
id: string;
name: string;
published_at: string;
download_completed: boolean;
assets: Array<{
name: string;
}>[]
assets: Asset[]
};
const versions = ref<Array<Version>>([]);