|
@ -124,7 +124,12 @@ interface ProjectData { |
|
|
}) |
|
|
}) |
|
|
export default class ProjectsView extends Vue { |
|
|
export default class ProjectsView extends Vue { |
|
|
apiServer = ""; |
|
|
apiServer = ""; |
|
|
projects: { handleId: string; name: string; description: string }[] = []; |
|
|
projects: { |
|
|
|
|
|
handleId: string; |
|
|
|
|
|
name: string; |
|
|
|
|
|
description: string; |
|
|
|
|
|
rowid: number; |
|
|
|
|
|
}[] = []; |
|
|
current: IIdentifier; |
|
|
current: IIdentifier; |
|
|
|
|
|
|
|
|
async dataLoader(url: string, token: string) { |
|
|
async dataLoader(url: string, token: string) { |
|
|