Account setting on setting page

This commit is contained in:
Liyas Thomas
2020-01-21 22:27:52 +05:30
parent 1fdde89d49
commit 211dfa24fa
6 changed files with 158 additions and 77 deletions

View File

@@ -237,6 +237,11 @@
<div v-else-if="$route.path === '/settings'">
<nav class="secondary-nav">
<ul>
<li>
<a href="#account" v-tooltip.right="$t('account')">
<i class="material-icons">perm_identity</i>
</a>
</li>
<li>
<a href="#theme" v-tooltip.right="$t('theme')">
<i class="material-icons">brush</i>
@@ -294,9 +299,11 @@
<button
class="icon"
v-tooltip="
(fb.currentUser.displayName || '<label><i>Name not found</i></label>') +
(fb.currentUser.displayName ||
'<label><i>Name not found</i></label>') +
'<br>' +
(fb.currentUser.email || '<label><i>Email not found</i></label>')
(fb.currentUser.email ||
'<label><i>Email not found</i></label>')
"
>
<img
@@ -830,7 +837,7 @@ export default {
watch: {
$route() {
this.$toast.clear();
// this.$toast.clear();
}
},