jsfiddleた、https://jsfiddle.net/r6o9h6zm/2/ブートストラップのnav-薬は2
私はすなわち、標準以外のACオーバー]をクリックした場合(選択したタブに基づいてデータを表示するには、VUEのJS 2にブートストラップNAVの丸薬を使用していましたその特定の部屋の記録を表示する必要があります)しかし、ここで私は3つの部屋すべてをインスタンスで取得しており、それを達成するために次のものを使用しましたが、結果は得られません。
HTML:
<div id="app">
<div class="room-tab">
<ul class="nav nav-pills nav-justified tab-line">
<li v-for="(item, index) in items" v-bind:class="{'active' : index === 0}">
<a :href="item.id" data-toggle="pill"> {{ item.title }} </a>
</li>
</ul>
<div class="room-wrapper tab-content">
<div v-for="(item, index) in items" v-bind:class="{'active' : index === 0}" :id="item.id">
<div class="row">
<div class="col-md-8">
<div class="col-md-4">
<h3>{{item.title}}</h3>
<p>{{item.content}}</p>
</div>
</div>
</div><br>
</div>
</div>
スクリプト:
new Vue({
el: '#app',
data: {
items: [
{
id: "0",
title: "Standard Non AC Room",
content: "Non AC Room",
},
{
id: "1",
title: "Standard AC Room",
content: "AC Room",
},
{
id: "2",
title: "Deluxe Room",
content: "Super Speciality Room",
},
],
}
})
私は選択した部屋タイプなどの記録と結果を得ることができますどのように非表示にする必要がありますか?
あなたが望むものかどうかわからない:https://jsfiddle.net/6d0zfnxL/ – thisdotvoid
これは '' '無効な式として表示されています:@cl ick = "{selectedIndex = index}" '' ' –