gamebrary/src/components/PageHeader.vue

29 lines
525 B
Vue
Raw Normal View History

2018-10-19 05:15:28 +00:00
<template lang="html">
2020-08-11 23:39:11 +00:00
<b-navbar class="px-3 py-0">
2020-07-22 15:52:09 +00:00
<b-navbar-brand href="/">
<img src="/static/gamebrary-logo.png" height="30" />
</b-navbar-brand>
<b-navbar-nav class="ml-auto">
<b-nav-item href="#">
<settings v-if="user" />
</b-nav-item>
</b-navbar-nav>
</b-navbar>
2018-10-19 05:15:28 +00:00
</template>
<script>
2019-07-10 23:25:58 +00:00
import Settings from '@/pages/Settings';
2019-10-09 16:30:07 +00:00
import { mapState } from 'vuex';
2018-10-19 05:15:28 +00:00
export default {
2019-11-08 19:56:03 +00:00
components: {
Settings,
},
2019-02-05 07:31:40 +00:00
2019-11-08 19:56:03 +00:00
computed: {
2020-07-22 15:52:09 +00:00
...mapState(['user']),
2019-11-08 19:56:03 +00:00
},
2018-10-19 05:15:28 +00:00
};
</script>