You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							25 lines
						
					
					
						
							506 B
						
					
					
				
			
		
		
	
	
							25 lines
						
					
					
						
							506 B
						
					
					
				<script setup>
 | 
						|
import { computed } from "vue"
 | 
						|
import Menubar from "primevue/menubar"
 | 
						|
import PlatformLogo from "../../../../assets/vue/components/layout/PlatformLogo.vue"
 | 
						|
 | 
						|
const menuItems = computed(() => [])
 | 
						|
</script>
 | 
						|
 | 
						|
<template>
 | 
						|
  <div class="app-topbar">
 | 
						|
    <Menubar :model="menuItems">
 | 
						|
      <template #start>
 | 
						|
        <PlatformLogo />
 | 
						|
      </template>
 | 
						|
      <template #end />
 | 
						|
    </Menubar>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<style scoped>
 | 
						|
.app-topbar .p-menubar {
 | 
						|
  margin-left: 0;
 | 
						|
  margin-right: 0;
 | 
						|
}
 | 
						|
</style>
 | 
						|
 |