add logout button

This commit is contained in:
2024-02-02 17:30:35 -06:00
parent 8a07105316
commit 2314b61671
3 changed files with 49 additions and 5 deletions

View File

@@ -13,7 +13,8 @@
<TheLogin />
</v-row>
<v-row v-else-if="!loadingMe" class="d-flex justify-center">
<v-btn @click="clickPlay" color="primary">Play</v-btn>
<v-btn @click="clickPlay" class="mx-4" color="primary">Play</v-btn>
<v-btn class="mx-4">Log Out</v-btn>
</v-row>
</v-container>
<v-container v-else-if="loading" class="fill-height">
@@ -83,5 +84,6 @@ onMounted(async () => {
} catch {
me.value = null;
}
me.value = 'a';
});
</script>