2017-12-06 20:38:04 +00:00
|
|
|
<template>
|
|
|
|
|
|
|
|
<div id='NOTIF-STACK' :class='gstore.nstack ? "active" : ""'>
|
|
|
|
|
|
|
|
<!-- Header -->
|
|
|
|
<div class='head'>Notifications</div>
|
|
|
|
|
|
|
|
<!-- Body -->
|
|
|
|
<div class='body'>
|
2017-12-07 17:17:32 +00:00
|
|
|
<span v-for='n in gstore.notif.emergency.data'><b>{{ n }}</b> est connecté</span>
|
2017-12-06 20:38:04 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: 'NOTIFICATION_STACK',
|
|
|
|
data(){ return { gstore: gstore.data }; },
|
|
|
|
methods: {}
|
|
|
|
}
|
|
|
|
</script>
|