mirror of
https://github.com/dtomlinson91/anno-production-chain-renderer.git
synced 2025-12-22 06:15:45 +00:00
add latest
This commit is contained in:
23
src/components/info_card/InfoCardItemWorld.vue
Normal file
23
src/components/info_card/InfoCardItemWorld.vue
Normal 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>
|
||||
Reference in New Issue
Block a user