Files
DiceCloud/app/imports/ui/properties/shared/PropertyIcon.vue
2020-03-06 10:15:38 +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>