11 lines
232 B
Vue
11 lines
232 B
Vue
<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> |