character endpoint

This commit is contained in:
Sirttas
2026-05-23 23:19:45 +02:00
parent d64b718573
commit e233e609e6
6 changed files with 68 additions and 8 deletions
+17
View File
@@ -0,0 +1,17 @@
<script setup lang="ts">
import {Character} from "./chartacters.ts";
interface Props {
character: Character;
}
const props = defineProps<Props>();
</script>
<template>
<div class="flex">
<img class="me-2" :src="`https://images.evetech.net/characters/${character.characterId}/portrait?size=32`" />
<span>{{ character.name }}</span>
</div>
</template>