Skip to content

Commit

Permalink
feat(tabs/noNavStyle): added related prop and check
Browse files Browse the repository at this point in the history
  • Loading branch information
syffs authored and pi0 committed Apr 15, 2018
1 parent a6dea02 commit 91c7257
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/tabs/tabs.js
Expand Up @@ -107,8 +107,8 @@ export default {
{
class: [
'nav',
`nav-${this.navStyle}`,
{
[`nav-${this.navStyle}`]: !this.noNavStyle,
[`card-header-${this.navStyle}`]: this.card && !this.vertical,
'card-header': this.card && this.vertical,
'h-100': this.card && this.vertical,
Expand Down Expand Up @@ -226,6 +226,10 @@ export default {
type: Boolean,
default: false
},
noNavStyle: {
type: Boolean,
default: false
},
lazy: {
// This prop is sniffed by the tab child
type: Boolean,
Expand Down

0 comments on commit 91c7257

Please sign in to comment.