initial commit

This commit is contained in:
SonicBlissed 2025-06-14 16:52:23 -04:00
parent e7a6126fbd
commit 4b0dff4102
40 changed files with 13635 additions and 0 deletions

View file

@ -0,0 +1,26 @@
<template>
<q-item clickable tag="a" target="_blank" :href="link">
<q-item-section avatar>
<q-icon name="people" color="purple" />
</q-item-section>
<q-item-section>
<q-item-label>{{ name }}</q-item-label>
<q-item-label caption class="justify-start items-start row text-justify"
><q-icon name="circle" class="q-pr-sm" :color="online ? 'green' : 'grey'" />{{
online ? 'Online' : 'Offline'
}}</q-item-label
>
</q-item-section>
</q-item>
<q-separator />
</template>
<script setup lang="ts">
export interface BuddyListProps {
name: string;
link: string;
online: boolean;
}
withDefaults(defineProps<BuddyListProps>(), {});
</script>