fork me on github

This commit is contained in:
Egor Aristov 2025-03-11 15:43:46 +03:00
parent e68cc2c4fa
commit ba17dcd680
2 changed files with 17 additions and 0 deletions

View File

@ -1,5 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
import { RouterView } from 'vue-router' import { RouterView } from 'vue-router'
import ForkMe from "@/components/ForkMe.vue";
</script> </script>
<template> <template>
@ -9,6 +10,7 @@ import { RouterView } from 'vue-router'
</div> </div>
</div> </div>
<RouterView /> <RouterView />
<ForkMe></ForkMe>
</template> </template>
<style scoped lang="scss"> <style scoped lang="scss">

View File

@ -0,0 +1,15 @@
<template>
<a href="https://github.com/egor3f/rssalchemy" target="_blank">
<img decoding="async" width="149" height="149"
src="https://github.blog/wp-content/uploads/2008/12/forkme_right_darkblue_121621.png"
class="attachment-full size-full" alt="Fork me on GitHub" loading="lazy">
</a>
</template>
<style scoped lang="scss">
.attachment-full {
position: absolute;
top: 0;
right: 0;
}
</style>