Skip to content

Commit

Permalink
fix i18n hook
Browse files Browse the repository at this point in the history
  • Loading branch information
userXinos authored Jan 16, 2024
1 parent 9ef8981 commit 5746c87
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/TechList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@
<!--suppress TypeScriptCheckImport -->
<script setup lang="ts">
import { useRouter } from 'vue-router';
import { useI18n } from 'vue-i18n';
import shipsData from '@Data/capital_ships.js';
import spaceBuildingsData from '@Data/spacebuildings.js';
Expand All @@ -168,6 +169,7 @@ export interface Props {
}
const router = useRouter();
const { t } = useI18n();
const spaceBuildings = { RedStarScanner: spaceBuildingsData.RedStarScanner, ShipmentRelay: spaceBuildingsData.ShipmentRelay };
const ships = { Transport: shipsData.Transport, Miner: shipsData.Miner, Battleship: shipsData.Battleship };
const alliance = { Name: 'AllianceLevel', TID: 'TID_CORP_TAB_MY_CORP', Icon: 'corpXp', specialIcon: true };
Expand Down

0 comments on commit 5746c87

Please sign in to comment.