mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
26 lines
492 B
Vue
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>
|