Files
buildpath/frontend/components/nav/Bar.vue
2024-12-05 13:21:17 +01:00

19 lines
521 B
Vue

<script lang="ts" setup>
defineProps<{
championName?: string
championLanes?: Array<LaneData>
}>()
const emit = defineEmits<{
stateChange: [state: string, lane: number]
}>()
</script>
<template>
<NavSideBar :champion-name="championName"
:champion-lanes="championLanes"
@state-change="(s, l) => emit('stateChange', s, l)"/>
<NavBottomBar :champion-name="championName"
:champion-lanes="championLanes"
@state-change="(s, l) => emit('stateChange', s, l)"/>
</template>