2017-11-30 15:46:30 +00:00
|
|
|
<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 -->
|
|
|
|
<div id='header-info' v-show='gstore.notif.active' :class='gstore.notif.type'>{{ gstore.notif.message }}</div>
|
|
|
|
|
|
|
|
<!-- Header Notif -->
|
|
|
|
<div id='header-notif'>
|
|
|
|
<div class='hnotif bell' data-count='4'></div>
|
|
|
|
<div class='hnotif message'data-count='23'></div>
|
|
|
|
<div class='hnotif search'></div>
|
|
|
|
<div class='hnotif menu'></div>
|
|
|
|
</div>
|
|
|
|
|
2017-11-30 15:46:30 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
2017-12-01 14:47:14 +00:00
|
|
|
name: 'HEADER',
|
|
|
|
data(){ return { gstore: window.gstore.data }; }
|
2017-11-30 15:46:30 +00:00
|
|
|
}
|
|
|
|
</script>
|