mirror of https://github.com/mitchell/mjfs-us.git
22 lines
399 B
Vue
22 lines
399 B
Vue
<script setup lang="ts">
|
|
import { VPButton } from "vitepress/theme";
|
|
const { href } = defineProps<{ href: string }>();
|
|
</script>
|
|
|
|
<template>
|
|
<div class="container">
|
|
<VPButton theme="brand" text="Repository" class="button" :href />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.container {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.button {
|
|
margin-top: 30px;
|
|
text-decoration: none;
|
|
}
|
|
</style>
|