Skip to content
Snippets Groups Projects

build(deps): Update dependencies and bump version to 2.3.4

Merged Griefed requested to merge develop into master
5 files
+ 750
830
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 1
2
<template>
<div id="parent" class="hexagon"
:class="[tile.typeId,isViewRadiusBorder(), ((tile.x == store.state.centerX) && (tile.y == store.state.centerY))?'centerTile':'']">
<div class="hexTop" :class="((tile.x == store.state.centerX) && (tile.y == store.state.centerY))?'centerTop':''"></div>
@@ -30,13 +29,13 @@
{{tile.x+'/'+tile.y+": "+ tile.typeId}}
</q-tooltip>
</div>
</template>
<script>
import {inject, ref} from "vue";
export default {
name: 'LttTile',
props:{
tile: Object,
typeValue: String
Loading