Skip to content

Commit

Permalink
Create AppGuides.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
vanvianen committed Aug 25, 2024
1 parent 045b317 commit 9884612
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/components/AppGuides.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<script setup>
import GuideItem from "./AppGuideItem.vue"
</script>

<script>
export default {
data() {
return {
resources: [
{
url: "https://scape.style",
title: "Stylescape"
},
]
}
}
}
</script>

<template>
<h2>Guides</h2>
<p>Read more detailed instructions and documentation on using or contributing to Stylescape.</p>

<ul class="">
<GuideItem
v-for="item in resources"
:href="item.url"
:text="item.title"
/>
</ul>
</template>

0 comments on commit 9884612

Please sign in to comment.