[+] Create method to generate swipe items

This commit is contained in:
Hykilpikonna
2019-12-24 22:41:16 -05:00
parent 4797d1c645
commit 972134c15d
+14
View File
@@ -148,4 +148,18 @@ export default class App extends Vue
background: config.footer.background
}
}
get swipeItems()
{
return this.artworks.map(a =>
{
return {
src: a.imgFull,
alt: a.title,
title: a.title,
w: a.width,
h: a.height
}
})
}
}