main/view/vue/header.vue

33 lines
728 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' @click='gstore.func.toggleMenuSize'>
2017-12-01 14:47:14 +00:00
<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'>
<div v-for='(notif, link) in gstore.notif' @click='show_notif(link)' :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',
data(){ return { gstore: gstore.data }; },
2017-12-03 15:02:18 +00:00
methods: {
show_notif(uri){
this.gstore.func.nav(this.$router, uri);
2017-12-03 15:02:18 +00:00
}
}
}
</script>