feat(docs): setup Gridsome for the website

This commit is contained in:
Luca Spezzano
2021-11-06 16:30:34 +01:00
committed by Dario Tranchitella
parent 14f9686bbb
commit 0acc2d2ef1
111 changed files with 25054 additions and 149 deletions
+32
View File
@@ -0,0 +1,32 @@
<template>
<component
:is="link ? 'g-link' : 'button'"
:to="link"
class="
inline-block
focus:outline-none
font-medium
rounded-md
relative
bg-primary
py-3 px-8
"
>
<slot />
</component>
</template>
<script>
export default {
props: {
link: {
type: String,
required: false,
default: () => undefined,
},
},
};
</script>
<style>
</style>