2021-03-24 17:35:30 +01:00

26 lines
492 B
Vue

<template>
<nav aria-label="breadcrumb">
<b-breadcrumb :class="[{ [`bg-${type}`]: type }, listClasses]">
<slot></slot>
</b-breadcrumb>
</nav>
</template>
<script>
export default {
name: 'breadcrumb',
props: {
type: {
type: String,
default: '',
description: 'Breadcrumb background type',
},
listClasses: {
type: [String, Object],
default: '',
description: 'Breadcrumb list classes',
},
},
}
</script>
<style></style>