19 lines
509 B
Vue
19 lines
509 B
Vue
|
<template>
|
||
|
<tags>
|
||
|
<b-tag v-if="admin" class="is-danger" rounded>Admin</b-tag>
|
||
|
<b-tag v-if="bot" class="is-info" rounded>Bot</b-tag>
|
||
|
<b-tag v-if="booster" class="is-primary" rounded>Discord Booster</b-tag>
|
||
|
<b-tag v-if="system" class="is-success" rounded>System</b-tag>
|
||
|
</tags>
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'UserInventory',
|
||
|
props: ['admin', 'booster', 'bot', 'hidden', 'banned', 'system'],
|
||
|
data() {
|
||
|
return {
|
||
|
inventory: []
|
||
|
}
|
||
|
},
|
||
|
}
|
||
|
</script>
|