我無法弄清楚如何呈現父組件,在頁面的一部分上顯示列表中的合同列表,以及當用戶單擊其中一個組件時,在頁面的其他部分顯示該特定合同的詳細信息。渲染vue.js組件並傳入數據
這裏是我的苗條文件:
#contracts_area
.filter-section
ul
li.filter-item v-for="contract in contractsAry" :key="contract.id" @click="showContract(contract)"
| {{ contract.name }}
.display-section
component :is="currentView" transition="fade" transition-mode="out-in"
script type="text/x-template" id="manage-contracts-template"
div
h1 Blank when page is newly loaded for now
script type="text/x-template" id="view-contract-template"
div :apply_contract="showContract"
h1#display-item__name v-name="name"
的javascript:
Vue.component('manage-template', {
template: '#manage-contracts-template'
});
Vue.component('view-contract', {
template: '#view-contract-template',
props: ['show_contract'],
data: function() {
return {
name: ''
}
},
methods: {
showContract: function(contract) {
return this.name = contract.name
}
}
});
Vue.http.headers.common['X-CSRF-Token'] = $('meta[name="csrf-token"]').attr('content');
var contractsResource = Vue.resource('/all_contracts{/id}.json');
var contracts = new Vue({
el: '#contracts_area',
data: {
currentView: 'manage-template',
contractsAry: [],
errors: {}
},
mounted: function() {
var that = this;
contractsResource.get().then(
function(res) {
that.contractsAry = res.data;
}
)
},
methods: {
showContract: function(contract) {
this.currentView = 'view-contract'
}
}
});
基本上我想這樣,當用戶點擊任何合同項目在.filter截面,它在.display部分顯示該合同的數據。我怎樣才能做到這一點?
完美,非常感謝您的幫助!感謝您的深入解答,對我的巨大幫助,因爲我剛剛開始使用Vue。 – asalgan