We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d3a146 commit 86f9c17Copy full SHA for 86f9c17
src/components/Header/HeaderDropdown.vue
@@ -1,15 +1,14 @@
1
<template>
2
<b-nav-item-dropdown :right="right" :no-caret="noCaret">
3
<template slot="button-content">
4
- <slot name="button-content">
5
- <img
6
- src="static/img/avatars/6.jpg"
7
- class="img-avatar"
8
- alt="admin@bootstrapmaster.com" />
+ <slot name="header">
+ ❔
9
</slot>
10
</template>
11
- <slot>
12
- <div :style="{ right: 'auto', height: '400px' }">dropdown</div>
+ <slot name="dropdown">
+ <div :style="{ right: 'auto', height: '200px' }">
+ <span class="text-center">dropdown</span>
+ </div>
13
14
</b-nav-item-dropdown>
15
@@ -25,9 +24,6 @@ export default {
25
24
type: Boolean,
26
default: false
27
}
28
- },
29
- data: () => {
30
- return { itemsCount: 42 }
31
32
33
</script>
0 commit comments