mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
20 lines
383 B
Vue
20 lines
383 B
Vue
<template>
|
|
<div class="header-menu">
|
|
|
|
<ds-menu v-if="show" :routes="menu" navbar style="margin-right: 20px"></ds-menu>
|
|
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import headerMenu from '../../constants/headerMenu.js'
|
|
|
|
export default {
|
|
name: 'HeaderMenu',
|
|
data() {
|
|
return {
|
|
show: headerMenu.SHOW_HEADER_MENU,
|
|
menu: headerMenu.MENU,
|
|
}
|
|
},
|
|
}
|
|
</script> |