frontend/src/components/Badges.vue

19 lines
509 B
Vue
Raw Normal View History

2021-01-19 01:57:19 +11:00
<template>
<tags>
<b-tag v-if="admin" class="is-danger" rounded>Admin</b-tag>&nbsp;
<b-tag v-if="bot" class="is-info" rounded>Bot</b-tag>&nbsp;
<b-tag v-if="booster" class="is-primary" rounded>Discord Booster</b-tag>&nbsp;
<b-tag v-if="system" class="is-success" rounded>System</b-tag>&nbsp;
</tags>
</template>
<script>
export default {
name: 'UserInventory',
props: ['admin', 'booster', 'bot', 'hidden', 'banned', 'system'],
data() {
return {
inventory: []
}
},
}
</script>