Profectus-Demo/src/features/resources/Resource.vue

18 lines
408 B
Vue
Raw Normal View History

<template>
<h2 :style="{ color, 'text-shadow': '0px 0px 10px ' + color }">
{{ amount }}
</h2>
</template>
2022-01-13 22:25:47 -06:00
<script setup lang="ts">
2022-02-27 16:04:56 -06:00
import { displayResource, Resource } from "@/features/resources/resource";
import { computed } from "vue";
const props = defineProps<{
2022-01-24 22:25:34 -06:00
resource: Resource;
color: string;
}>();
2022-01-13 22:25:47 -06:00
const amount = computed(() => displayResource(props.resource));
</script>