Files
DiceCloud/app/imports/ui/properties/PropertyIcon.vue
2019-08-06 13:16:46 +02:00

19 lines
271 B
Vue

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