Revert "Revert the revert"

This reverts commit 4c311a8dbb.
This commit is contained in:
Kevin
2019-06-20 00:31:29 +02:00
parent 21ccb787f6
commit b35d5bc356
14 changed files with 27 additions and 283 deletions

View File

@@ -1,19 +0,0 @@
<template lang="pug">
div
h1 {{ resources.title }}
.cards
template(v-for='resource in resources.resources')
Card(:title='resource.title' :desc='resource.desc' :url='resource.url')
</template>
<script>
import Card from './Card'
export default {
props: ["resources"],
components: {
Card
},
}
</script>