From 6bf0ddf8c165851e0a5be77f0d5258837f4b97f5 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Mon, 23 Dec 2019 09:13:30 -0500 Subject: [PATCH] [+] Parse artworks --- src/App.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/App.vue b/src/App.vue index 329f7ee..b95df5f 100644 --- a/src/App.vue +++ b/src/App.vue @@ -60,6 +60,12 @@ { // Set title document.title = config.title.text; + + // Parse artworks + config.artworks.forEach(a => + { + this.artworks.push(new Artwork(a.date, a.title, a.format)); + }) } /**