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

@@ -4,6 +4,7 @@ import { LANE_IMAGES, lanePositionToIndex, POSITIONS_STR } from '~/utils/cdragon
defineProps<{
championName?: string
championLanes?: Array<LaneData>
tierlistList?: boolean
}>()
const emit = defineEmits<{
stateChange: [state: string, lane: number]
@@ -45,6 +46,8 @@ function handleStateChange(newState : string, newLane: number) {
style="margin-top: 10px; font-size: 1.9rem; padding-left: 35px;">Items</h2>
</div>
<NavTierlistList v-if="tierlistList == true" style="margin-top: 30px;" />
</div>
</template>