Files
DiceCloud/app/imports/ui/properties/shared/PropertyIcon.vue
2020-05-25 19:09:55 +02:00

22 lines
315 B
Vue

<template lang="html">
<v-icon :color="color">
{{ icon }}
</v-icon>
</template>
<script>
import { getPropertyIcon } from '/imports/constants/PROPERTIES.js';
export default {
props: {
type: String,
color: String,
},
computed: {
icon(){
return getPropertyIcon(this.type);
},
},
}
</script>