BetterDiscordApp-v2/client/src/ui/components/sidebar/Item.vue

28 lines
748 B
Vue

/**
* BetterDiscord Sidebar Item Component
* Copyright (c) 2015-present Jiiks/JsSucks - https://github.com/Jiiks / https://github.com/JsSucks
* All rights reserved.
* https://betterdiscord.net
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
<template>
<SidebarButton v-if="item._type === 'button'" :item="item" :active="active" @click="$emit('click', $event)" />
<SidebarHeader v-else :item="item" />
</template>
<script>
// Imports
import { SidebarHeader, SidebarButton } from './';
export default {
props: ['item', 'active'],
components: {
SidebarHeader,
SidebarButton
}
}
</script>