Rename resources module => data, add look up tag, add polyfill for flat()

This commit is contained in:
Unknown
2019-06-22 17:43:40 +02:00
parent a57aa260bc
commit ba47943934
4 changed files with 48 additions and 23 deletions

View File

@@ -12,7 +12,7 @@ import Card from '../components/Card'
export default {
data () {
return {
category: this.$store.getters['resources/findResources'](this.$route.params.category),
category: this.$store.getters['data/findResources'](this.$route.params.category),
}
},
components: { Card },