24 lines
407 B
Vue
24 lines
407 B
Vue
|
<template>
|
||
|
|
||
|
<div id='NOTIF-STACK' :class='gstore.nstack ? "active" : ""'>
|
||
|
|
||
|
<!-- Header -->
|
||
|
<div class='head'>Notifications</div>
|
||
|
|
||
|
<!-- Body -->
|
||
|
<div class='body'>
|
||
|
<span v-for='n in gstore.notif[0].data'><b>{{ n }}</b> est connecté</span>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</template>
|
||
|
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'NOTIFICATION_STACK',
|
||
|
data(){ return { gstore: gstore.data }; },
|
||
|
methods: {}
|
||
|
}
|
||
|
</script>
|