fix: linebreak and cleanup account menu (#3625)
This commit is contained in:
parent
46406792fe
commit
e5e589fc40
1 changed files with 9 additions and 21 deletions
|
|
@ -91,45 +91,33 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<q-list>
|
<q-list>
|
||||||
<q-item to="/account" clickable v-close-popup
|
<q-item to="/account" clickable v-close-popup>
|
||||||
><q-item-section>
|
|
||||||
<q-icon name="person" />
|
|
||||||
</q-item-section>
|
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-item-label>
|
<q-item-label>
|
||||||
|
<q-icon class="q-mr-sm" name="person"></q-icon>
|
||||||
<span v-text="$t('my_account')"></span>
|
<span v-text="$t('my_account')"></span>
|
||||||
</q-item-label>
|
</q-item-label>
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
<q-item-section>
|
|
||||||
<q-item-label> </q-item-label>
|
|
||||||
</q-item-section>
|
|
||||||
</q-item>
|
</q-item>
|
||||||
<q-item to="/account#theme" clickable v-close-popup
|
<q-item to="/account#theme" clickable v-close-popup>
|
||||||
><q-item-section>
|
|
||||||
<q-icon :name="$q.dark.isActive ? 'dark_mode' : 'light_mode'" />
|
|
||||||
</q-item-section>
|
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-item-label>
|
<q-item-label>
|
||||||
|
<q-icon
|
||||||
|
class="q-mr-sm"
|
||||||
|
:name="$q.dark.isActive ? 'dark_mode' : 'light_mode'"
|
||||||
|
></q-icon>
|
||||||
<span v-text="$t('theme')"></span>
|
<span v-text="$t('theme')"></span>
|
||||||
</q-item-label>
|
</q-item-label>
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
<q-item-section>
|
|
||||||
<q-item-label> </q-item-label>
|
|
||||||
</q-item-section>
|
|
||||||
</q-item>
|
</q-item>
|
||||||
<q-separator></q-separator>
|
<q-separator></q-separator>
|
||||||
<q-item clickable v-close-popup @click="utils.logout"
|
<q-item clickable v-close-popup @click="utils.logout">
|
||||||
><q-item-section>
|
|
||||||
<q-icon name="logout" />
|
|
||||||
</q-item-section>
|
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-item-label>
|
<q-item-label>
|
||||||
|
<q-icon class="q-mr-sm" name="logout"></q-icon>
|
||||||
<span v-text="$t('logout')"></span>
|
<span v-text="$t('logout')"></span>
|
||||||
</q-item-label>
|
</q-item-label>
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
<q-item-section>
|
|
||||||
<q-item-label> </q-item-label>
|
|
||||||
</q-item-section>
|
|
||||||
</q-item>
|
</q-item>
|
||||||
</q-list>
|
</q-list>
|
||||||
</q-btn-dropdown>
|
</q-btn-dropdown>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue