Skip to content

Commit

Permalink
[table] fix typo; add missing prop (#430)
Browse files Browse the repository at this point in the history
  • Loading branch information
silentred authored and pi0 committed May 20, 2017
1 parent 86192e9 commit f9fbfc3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/components/table.vue
Expand Up @@ -3,7 +3,7 @@
role="grid"
:class="tableClass"
>
<thead :class="headVaraiant ? ('thead-' + headVariant) : ''">
<thead :class="headVariant ? ('thead-' + headVariant) : ''">
<tr role="row">
<th v-for="field,key in fields"
@click="headClick(field,key)"
Expand Down Expand Up @@ -83,6 +83,10 @@
};
},
props: {
id: {
type: String,
default: ''
},
items: {
type: Array,
default: () => []
Expand Down

0 comments on commit f9fbfc3

Please sign in to comment.