Added tierlistList on tier list x(
All checks were successful
pipeline / build-and-push-images (push) Successful in 33s
pipeline / deploy (push) Successful in 8s

This commit is contained in:
2024-12-05 14:34:25 +01:00
parent 87f703666e
commit 4776cda80d
4 changed files with 29 additions and 2 deletions

View File

@@ -2,6 +2,7 @@
defineProps<{
championName?: string
championLanes?: Array<LaneData>
tierlistList?: boolean
}>()
const emit = defineEmits<{
stateChange: [state: string, lane: number]
@@ -11,7 +12,8 @@ const emit = defineEmits<{
<template>
<NavSideBar :champion-name="championName"
:champion-lanes="championLanes"
:champion-lanes="championLanes"
:tierlist-list="tierlistList"
@state-change="(s, l) => emit('stateChange', s, l)"/>
<NavBottomBar :champion-name="championName"
:champion-lanes="championLanes"