From 3d8d6264db937505834051d951883278b6beea8e Mon Sep 17 00:00:00 2001 From: buttle Date: Fri, 22 Oct 2021 12:28:16 +0200 Subject: [PATCH] prints api call result --- src/components/archiveList.vue | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/components/archiveList.vue b/src/components/archiveList.vue index 2c385e7..680c9c9 100644 --- a/src/components/archiveList.vue +++ b/src/components/archiveList.vue @@ -12,9 +12,12 @@ This file is part of ArciveList.

List of sites

-
- {{ site.title }} -
+ @@ -40,9 +43,10 @@ export default { }, mounted() { var self = this; - axios.get('https://collections.arc-hive.zone/api/sites', { + axios.get('https://dev-archive.hangar.org/api/sites', { }) .then(function (response) { + console.log(response.data) self.sites = response.data //self.$forceUpdate(); })