Files
onboard/resources/js/Layouts/Components/AppHeader.vue

27 lines
741 B
Vue

<script setup>
import { NFlex, NSpace, NDivider, NButton } from 'naive-ui'
import ReportSelectDate from "../../Components/ReportSelectDate.vue";
import AppUserButton from "./AppUserButton.vue";
import {Link} from "@inertiajs/vue3";
import AppHeaderRole from "./AppHeaderRole.vue";
</script>
<template>
<NFlex justify="space-between" align="center" class="px-4 w-full h-full">
<NFlex align="center">
<NButton :tag="Link" text href="/">
Метрика
</NButton>
<!-- <NDivider vertical />-->
<!-- <ReportSelectDate />-->
</NFlex>
<NFlex align="center">
<AppUserButton />
</NFlex>
</NFlex>
</template>
<style scoped>
</style>