feat: show name on home page

This commit is contained in:
Ricardo Arturo Cabral Mejia 2022-03-27 19:18:12 +00:00 committed by fiatjaf
parent a2621f7d48
commit 8b0c96add2

View File

@ -1,6 +1,7 @@
<template> <template>
<q-page class="px-4 pt-6"> <q-page class="px-4 pt-6">
<div class="text-xl">Home</div> <div v-if="$store.getters.hasName(pubkey)" class="text-xl">Hello <Name :pubkey="$store.state.keys.pub" /></div>
<div v-else class="text-xl">Home</div>
<Publish /> <Publish />