1
0
elk/components/account/AccountMe.client.vue

16 lines
464 B
Vue
Raw Normal View History

2022-11-16 00:48:23 +09:00
<script setup lang="ts">
2022-11-23 08:08:36 +09:00
const account = $computed(() => currentUser.value?.account)
2022-11-16 00:48:23 +09:00
</script>
<template>
2022-11-17 06:27:02 +09:00
<div flex flex-col gap-4 p4>
2022-11-16 00:48:23 +09:00
<!-- TODO: multiple account switcher -->
2022-11-17 22:09:54 +09:00
<template v-if="account">
<AccountInfo :account="account" />
2022-11-21 15:55:31 +09:00
<PublishWidget draft-key="home" />
2022-11-17 22:09:54 +09:00
</template>
2022-11-16 00:48:23 +09:00
<!-- TODO: dialog for select server -->
<a v-else href="/api/mas.to/login" px2 py1 bg-teal6 text-white m2 rounded>Login</a>
</div>
</template>