我的模板:調用函數
<template id="players-template" inline-template>
<div v-for="player in players">
<div v-bind:class="{ 'row': ($index + 1) % 3 == 0 }">
<div class="player col-md-4">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">
<a href="#">{{ player.username }}</a>
<span class="small pull-right">{{ player.createdAt }}</span>
</h3>
</div>
<div class="panel-body">
<img v-bind:src="player.avatar" alt="{{ player.username }}" class="img-circle center-block">
</div>
<div class="panel-footer">
<div class="btn-group btn-group-justified" role="group" aria-label="...">
<a href="#" class="btn btn-primary btn-success send-message" data-toggle="tooltip" data-placement="bottom" title="Wyślij wiadomość" v-bind:id="player.id" @click="createConversation(player.id)"><span class="glyphicon glyphicon-envelope"></span> </a>
<a href="#" class="btn btn-primary btn-info" data-toggle="tooltip" data-placement="bottom" title="Pokaż profil"><span class="glyphicon glyphicon-user"></span> </a>
<a href="#" class="btn btn-primary btn-primary" data-toggle="tooltip" data-placement="bottom" title="Zobacz szczegółowe informacje o poście"><span class="glyphicon glyphicon-option-horizontal"></span> </a>
</div>
</div>
</div>
</div>
</div>
</div>
</template>
我的腳本:
new Vue({
el: 'body',
methods: {
createConversation: function(id) {
console.log("createConversation()");
console.log(id);
}
}
});
當模板被渲染我得到一個錯誤[Vue warn]: v-on:click="createConversation" expects a function value, got undefined
。我不知道如何在組件模板中使用方法。如果有人能幫助我,我將不勝感激。
我不希望在該組件這一功能,因爲它會產生完全不同。模板從數據庫獲取用戶並顯示它們。然後,當我點擊按鈕時,我想創建新的對話。 – nix9
您可以使用其他答案中的事件,也可以使用'this。$ root'訪問根Vue實例。所以在你的點擊事件中,你可以使用'$ root.createConversation(player.id)'。我鼓勵你嘗試構建你的組件,以便每個組件管理它自己的功能,這是最好的可重用性和Vue的核心概念。 – Jeff
我想構建我的應用程序。這就是爲什麼我不想混合不同的功能。 – nix9