add latest

This commit is contained in:
2022-10-01 01:06:54 +01:00
parent 944167e608
commit f8e03e2ecc
11 changed files with 510 additions and 396 deletions

View File

@@ -0,0 +1,23 @@
<template>
<q-item>
<q-item-section avatar>
<q-img :src="icon" class="info-icon"></q-img>
</q-item-section>
<q-item-section>
<span>
{{ text }}
<q-img :src="worldIcon" class="info-small-icon"></q-img>
production rates.
</span>
</q-item-section>
</q-item>
</template>
<script setup lang="ts">
// Props
defineProps<{
icon: string;
worldIcon: string;
text: string;
}>();
</script>