mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-22 12:04:45 +02:00
19 lines
390 B
Vue
19 lines
390 B
Vue
<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>
|