Full typescript and mvvm implementation #3

Merged
Schmidii99 merged 26 commits from Developer into main 2023-04-23 20:02:32 +02:00
Showing only changes of commit 1f90d0351f - Show all commits

View File

@ -5,7 +5,7 @@ export class CpuRepository {
#nextCPU; #nextCPU;
async init() { async init() {
const fetchResult = await fetch("./js/data.json"); const fetchResult = await fetch("../data.json");
this.#cpuList = await fetchResult.json(); this.#cpuList = await fetchResult.json();
this.#currentCPU = this.getRandomCpu(); this.#currentCPU = this.getRandomCpu();