Skip to content
This repository was archived by the owner on May 25, 2018. It is now read-only.

Commit b5a92cf

Browse files
authored
Fix display of tabs label #520
1 parent 3122f27 commit b5a92cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tabset.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<ul class="nav nav-{{navStyle}}" role="tablist">
55
<template v-for="t in headers">
66
<li v-if="!t._tabgroup" :class="{active:t.active, disabled:t.disabled}" @click.prevent="select(t)">
7-
<a href="#"><slot name="header" v-html="t.header"></slot></a>
7+
<a href="#"><slot name="header">{{{ t.header }}}</slot></a>
88
</li>
99
<dropdown v-else :text="t.header" :class="{active:t.active}" :disabled="t.disabled">
1010
<li v-for="tab in t.tabs" :class="{disabled:tab.disabled}"><a href="#" @click.prevent="select(tab)">{{tab.header}}</a></li>

0 commit comments

Comments
 (0)