21 lines
445 B
Vue
21 lines
445 B
Vue
<template lang="pug">
|
|
div
|
|
h1 {{ category.title }}
|
|
.cards
|
|
template(v-for='resource in category.resources')
|
|
Card(:title='resource.title' :desc='resource.desc' :url='resource.url')
|
|
</template>
|
|
|
|
<script>
|
|
import Card from '../components/Card'
|
|
|
|
export default {
|
|
data () {
|
|
return {
|
|
category: this.$store.getters['resources/findResources'](this.$route.params.category),
|
|
}
|
|
},
|
|
components: { Card },
|
|
}
|
|
</script>
|