Files
gemory/src/pages/Characters.vue
T
2026-05-23 14:29:25 +02:00

12 lines
300 B
Vue

<script setup lang="ts">
const addCharacter = () => {
window.location.replace("http://localhost:8080/oauth2/authorization/esi");
}
</script>
<template>
<div class="grid mb-2 mt-4">
<button class="justify-self-end" @click="addCharacter">Add chacarcter</button>
</div>
</template>