draft character page

This commit is contained in:
2024-05-18 18:55:37 +02:00
parent c38f44c182
commit 6c99fa0401
3 changed files with 15 additions and 0 deletions

11
src/pages/Characters.vue Normal file
View File

@@ -0,0 +1,11 @@
<script setup lang="ts">
const addCharacter = () => {
// TODO
}
</script>
<template>
<div class="grid mb-2 mt-4">
<button class="justify-self-end" @click="addCharacter">Add chacarcter</button>
</div>
</template>