add resource, remove ads

This commit is contained in:
André Weller
2019-05-12 02:25:17 +02:00
parent e2379e5c08
commit 864bae9215
3 changed files with 39 additions and 3 deletions

36
pages/tools/index.vue Normal file
View File

@@ -0,0 +1,36 @@
<template lang="pug">
div
h1 Servers
.cards
template(v-for='resource in resources')
Card(:title='resource.title' :desc='resource.desc' :url='resource.url')
</template>
<script>
import Card from '../../components/Card'
export default {
data() {
return {
resources: [
{
title: 'JSON Generator',
desc: 'Random JSON generator for your project - because debugging without data, does not make sense!',
url: 'https://www.json-generator.com'
},
]
}
},
components: {
Card
}
}
</script>
<style lang="scss" scoped>
h1 {
margin-bottom: 2rem;
}
</style>