admin-fe/src/views/layout/components/Sidebar/Item.vue

35 lines
542 B
Vue
Raw Normal View History

<template>
<span>
<svg-icon :icon-class="icon"/>
<span slot="title">{{ title }}</span>
<el-badge :value="count" type="primary" class="count-badge" />
</span>
</template>
<script>
export default {
name: 'Item',
props: {
2020-07-13 23:51:51 +00:00
count: {
type: String,
default: null
},
icon: {
type: String,
default: ''
},
title: {
type: String,
default: ''
}
}
}
</script>
<style rel='stylesheet/scss' lang='scss' scoped>
.count-badge {
margin-left: 5px;
height: 48px;
}
</style>