Lint and format
This commit is contained in:
@@ -1,22 +1,25 @@
|
||||
<script lang="ts" setup>
|
||||
defineProps<{
|
||||
championName?: string
|
||||
championLanes?: Array<LaneData>
|
||||
tierlistList?: boolean
|
||||
championName?: string
|
||||
championLanes?: Array<LaneData>
|
||||
tierlistList?: boolean
|
||||
}>()
|
||||
const emit = defineEmits<{
|
||||
stateChange: [state: string, lane: number]
|
||||
stateChange: [state: string, lane: number]
|
||||
}>()
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<LazyNavSideBar :champion-name="championName"
|
||||
:champion-lanes="championLanes"
|
||||
:tierlist-list="tierlistList"
|
||||
@state-change="(s, l) => emit('stateChange', s, l)"/>
|
||||
<LazyNavBottomBar :champion-name="championName"
|
||||
:champion-lanes="championLanes"
|
||||
:tierlist-list="tierlistList"
|
||||
@state-change="(s, l) => emit('stateChange', s, l)"/>
|
||||
</template>
|
||||
<LazyNavSideBar
|
||||
:champion-name="championName"
|
||||
:champion-lanes="championLanes"
|
||||
:tierlist-list="tierlistList"
|
||||
@state-change="(s, l) => emit('stateChange', s, l)"
|
||||
/>
|
||||
<LazyNavBottomBar
|
||||
:champion-name="championName"
|
||||
:champion-lanes="championLanes"
|
||||
:tierlist-list="tierlistList"
|
||||
@state-change="(s, l) => emit('stateChange', s, l)"
|
||||
/>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user