Skip to content

Commit e5e8739

Browse files
author
bootstrap-vue-bot
committed
change prop to striped fixes bootstrap-vue#120
1 parent 5ca8223 commit e5e8739

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

components/table.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<table :class="['table',stripped?'table-striped':'',hover?'table-hover':'']">
2+
<table :class="['table',striped?'table-striped':'',hover?'table-hover':'']">
33
<thead>
44
<tr>
55
<th @click="headClick(field,key)"
@@ -47,7 +47,7 @@
4747
default: () => {
4848
}
4949
},
50-
stripped: {
50+
striped: {
5151
type: Boolean,
5252
default: false
5353
},

docs/pages/docs/components/tables.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</div>
2828

2929
<b-table
30-
stripped
30+
striped
3131
hover
3232
:items="items"
3333
:fields="fields"

0 commit comments

Comments
 (0)