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

19 lines
247 B
Vue
Raw Normal View History

<template>
<h2 v-bind:style="{ color, 'text-shadow': '0px 0px 10px ' + color }">
{{ amount }}
</h2>
</template>
<script>
export default {
name: 'resource',
props: {
color: String,
amount: String
}
};
</script>
<style scoped>
</style>