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