🐛 版本过滤
This commit is contained in:
parent
7c10ad1341
commit
563374a4be
@ -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>>([]);
|
||||||
|
Loading…
Reference in New Issue
Block a user