Skip to content

Commit 667448c

Browse files
committed
Merge branch '0-v-0-petite-vue'
2 parents ad436aa + b1f7f92 commit 667448c

File tree

2 files changed

+28
-30
lines changed

2 files changed

+28
-30
lines changed

frameworks/keyed/petite-vue/index.html

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -44,21 +44,20 @@ <h1>petite-vue</h1>
4444
</div>
4545
</div>
4646
<table class="table table-hover table-striped test-data">
47-
<tbody>
48-
<tr v-for="item in rows" :class="{danger: item == selected ? 'danger' : ''}" :key="item.id">
49-
<td class="col-md-1">{{item.id}}</td>
50-
<td class="col-md-4">
51-
<a role="select" @click="select(item)">{{item.label}}</a>
52-
</td>
53-
<td class="col-md-1">
54-
<a>
55-
<span role="delete" @click="remove(item)" class="glyphicon glyphicon-remove"
56-
aria-hidden="true"></span>
57-
</a>
58-
</td>
59-
<td class="col-md-6"></td>
60-
</tr>
61-
</tbody>
47+
<tr v-for="item in rows" :class="{danger: item == selected ? 'danger' : ''}" :key="item.id">
48+
<td class="col-md-1">{{item.id}}</td>
49+
<td class="col-md-4">
50+
<a role="select" @click="select(item)">{{item.label}}</a>
51+
</td>
52+
<td class="col-md-1">
53+
<a>
54+
<span role="delete" @click="remove(item)" class="glyphicon glyphicon-remove"
55+
aria-hidden="true"></span>
56+
</a>
57+
</td>
58+
<td class="col-md-6"></td>
59+
</tr>
60+
</table>
6261
</div>
6362
<span class="preloadicon glyphicon glyphicon-remove" aria-hidden="true"></span>
6463
</div>

frameworks/non-keyed/petite-vue/index.html

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -44,21 +44,20 @@ <h1>petite-vue</h1>
4444
</div>
4545
</div>
4646
<table class="table table-hover table-striped test-data">
47-
<tbody>
48-
<tr v-for="item in rows" :class="{danger: item == selected ? 'danger' : ''}">
49-
<td class="col-md-1">{{item.id}}</td>
50-
<td class="col-md-4">
51-
<a role="select" @click="select(item)">{{item.label}}</a>
52-
</td>
53-
<td class="col-md-1">
54-
<a>
55-
<span role="delete" @click="remove(item)" class="glyphicon glyphicon-remove"
56-
aria-hidden="true"></span>
57-
</a>
58-
</td>
59-
<td class="col-md-6"></td>
60-
</tr>
61-
</tbody>
47+
<tr v-for="item in rows" :class="{danger: item == selected ? 'danger' : ''}">
48+
<td class="col-md-1">{{item.id}}</td>
49+
<td class="col-md-4">
50+
<a role="select" @click="select(item)">{{item.label}}</a>
51+
</td>
52+
<td class="col-md-1">
53+
<a>
54+
<span role="delete" @click="remove(item)" class="glyphicon glyphicon-remove"
55+
aria-hidden="true"></span>
56+
</a>
57+
</td>
58+
<td class="col-md-6"></td>
59+
</tr>
60+
</table>
6261
</div>
6362
<span class="preloadicon glyphicon glyphicon-remove" aria-hidden="true"></span>
6463
</div>

0 commit comments

Comments
 (0)