Profectus-Demo/src/components/system/Resource.vue

20 lines
438 B
Vue
Raw Normal View History

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