initial commit
This commit is contained in:
commit
2807918e2c
27 changed files with 9772 additions and 0 deletions
24
components/Social.vue
Normal file
24
components/Social.vue
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<script setup>
|
||||
const props = defineProps({
|
||||
src: String,
|
||||
href: String,
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<a :href="props.href" class="icon2">
|
||||
<img :src="props.src" class="icon" />
|
||||
</a>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.icon {
|
||||
width: 48px;
|
||||
|
||||
}
|
||||
|
||||
.icon2{
|
||||
width: 48px;
|
||||
|
||||
}
|
||||
</style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue