edit: passage contenu artistes et autres dans DATA pour modif facile + gestion ouverture image (gestion multi icon x4 à faire + panneau liens)

This commit is contained in:
2026-03-21 07:05:43 +01:00
parent c5bf56e90d
commit fbe2d02a99
9 changed files with 235 additions and 67 deletions
@@ -32,6 +32,7 @@
<InboxDiv @open="openPannel('msg')"></InboxDiv>
<ArtistPan
v-show="isActive.includes('artist')"
@openImg = "openPannel('visual')"
@close="closePannel('artist')"
@focus="focusPannel('artist')"
:class="{zBase: isFocused!=='artist', zFocus: isFocused==='artist'}">
@@ -66,6 +67,12 @@
@focus="focusPannel('follow')"
:class="{zBase: isFocused!=='follow', zFocus: isFocused==='follow'}">
</FollowPan>
<VisualizerPan
v-show="isActive.includes('visual')"
@close="closePannel('visual')"
@focus="focusPannel('visual')"
:class="{zBase: isFocused!=='visual', zFocus: isFocused==='visual'}">
</VisualizerPan>
</template>
<style scoped>
@@ -146,7 +153,7 @@
/*================ MID FORMAT*/
@media(min-width:500px){
#welcomeText{
height:75%;
height:72%;
}
#btnColumn .iconBtnStyle{
@@ -183,6 +190,7 @@
},
methods:{
openPannel(name){
console.log(name);
if(!this.isActive.includes(name)){
this.isActive.push(name);
}