main/view/vue/header.vue

33 lines
619 B
Vue
Raw Normal View History

<template>
<div id='HEADER'>
2017-12-01 14:47:14 +00:00
<!-- Header Icon+Title -->
<div id='header-icon'>
<div class='header-title'>{{ gstore.header_title }}</div>
</div>
<!-- Header Info -->
2017-12-03 15:02:18 +00:00
<div id='header-info' v-show='gstore.info.active' :class='gstore.info.type'>{{ gstore.info.message }}</div>
2017-12-01 14:47:14 +00:00
<!-- Header Notif -->
<div id='header-notif'>
2017-12-03 15:02:18 +00:00
<div v-for='notif in gstore.notif' :class='"hnotif " + notif.class' :data-count='notif.count'></div>
2017-12-01 14:47:14 +00:00
</div>
</div>
</template>
<script>
export default {
2017-12-01 14:47:14 +00:00
name: 'HEADER',
2017-12-03 15:02:18 +00:00
data(){ return { gstore: window.gstore.data }; },
methods: {
show_notif(){
}
}
}
</script>