ปรับ UI / ปรับคำถามใหม่
All checks were successful
frontend-action / build-image (push) Successful in 1m23s

This commit is contained in:
2024-05-02 19:50:31 +07:00
parent c53dca42c7
commit 06c8dba3fc
10 changed files with 172 additions and 185 deletions

View File

@@ -42,9 +42,11 @@
<v-menu transition="slide-x-transition" v-if="getUsername">
<template v-slot:activator="{ props }">
<v-btn elevated color="#F4C03F" v-bind="props" height="40">
<!-- {{ getImg }} -->
<v-avatar
color="#635d56"
v-if="getImg"
v-if="getImg&&img"
:image="getImg"
size="30"
>
@@ -127,7 +129,7 @@ export default {
if (this.getUsername == "") {
this.$store.commit("setUsername", this.username);
}
if (this.getImg == "") {
if (this.getImg == ""||this.getImg == null||this.getImg == undefined) {
this.$store.commit("setImg", this.img);
}
},