misc_pterodactyl-panel/resources/assets/scripts/components/Icon.vue

19 lines
390 B
Vue
Raw Normal View History

2018-09-14 04:23:13 +00:00
<template>
<i class="ion" :class="iconClass"></i>
</template>
<script>
export default {
props: {
type: {type: String, required: true},
iconStyle: {type: String, default: 'ios'},
},
computed: {
iconClass: function () {
return `ion-${this.iconStyle}-${this.type}`;
}
},
}
</script>