mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
23 lines
402 B
Vue
23 lines
402 B
Vue
<template>
|
|
<div class="header" :class="{ [`bg-${type}`]: type }">
|
|
<b-container fluid>
|
|
<div class="header-body">
|
|
<slot></slot>
|
|
</div>
|
|
</b-container>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'base-header',
|
|
props: {
|
|
type: {
|
|
type: String,
|
|
default: 'success',
|
|
description: 'Header background type',
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
<style></style>
|