From 23a24c58422ba07be63b0ce7cdf3dc5689e2d0b2 Mon Sep 17 00:00:00 2001 From: Sebin Nyshkim Date: Mon, 17 Jul 2023 15:39:34 +0200 Subject: [PATCH] feat: add interface for translation key iteration --- src/views/CareerPathView.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/views/CareerPathView.vue b/src/views/CareerPathView.vue index 0762133..aeaa881 100644 --- a/src/views/CareerPathView.vue +++ b/src/views/CareerPathView.vue @@ -9,6 +9,11 @@ import IndustryIcon from '@/assets/icons/IndustryIcon.vue' import TruckIcon from '@/assets/icons/TruckIcon.vue' import BoxesIcon from '@/assets/icons/BoxesIcon.vue' +interface Job { + title: string; + desc: string; +} + const jobIcons = [ WhiskeyGlassIcon, TreeIcon, @@ -27,7 +32,7 @@ const jobIcons = [ - +