From d4c742b82226ae4327eeaa4c67ab584500c1af45 Mon Sep 17 00:00:00 2001 From: tanzhijian Date: Thu, 7 Dec 2023 17:46:53 +0800 Subject: [PATCH] update data url --- src/pages/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/index.vue b/src/pages/index.vue index 0bbed23..9fba0f7 100644 --- a/src/pages/index.vue +++ b/src/pages/index.vue @@ -27,7 +27,7 @@ function filterMatches(date: string) { } async function getMatchesData() { - const url = 'https://raw.githubusercontent.com/tanzhijian/score-simulator-data/main/matches.json' + const url = 'https://raw.githubusercontent.com/tanzhijian/score-simulator-data/release/matches.json' const { data } = await useFetch(url).get().json() matchesData.value = data.value filterMatches(selectedDate)