計算された列をテーブルに追加しようとしています(最後の3列を参照)。私は、レコードを正しく参照していない計算されたプロパティと関係があると感じています。私は何か簡単に欠けていると確信しています何か案は?ありがとうございました!Vue.js 2 - vリストリピータの計算プロパティ
はここでフィドルです:https://jsfiddle.net/0770ct39/2/
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Vue.js Tutorial | More Computed Properties</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<div id="app" class="container">
<div class="row">
<table class="table table-hover">
<thead>
<tr>
<th>Phase</th>
<th>Labour Budget</th>
<th>Labour Hours</th>
<th>Labour Cost Rate</th>
<th>Labour Cost</th>
<th>Overhead Cost</th>
<th>Net</th>
</tr>
</thead>
<tbody>
<tr v-for="record in records">
<td>{{record.phase}}</td>
<td>{{record.labourBudget}}</td>
<td><input type="text" v-model="record.labourHours"></td>
<td><input type="text" v-model="record.labourCostRate"></td>
<td>{{record.labourCost}}</td>
<td>{{record.overheadCost}}</td>
<td>{{record.net}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
<script src="https://unpkg.com/[email protected]/dist/vue.js"></script>
<script>
var app = new Vue({
el: '#app',
data: {
records: [
{phase:"Phase1", labourBudget: 100, labourHours: 4, labourCostRate: 45},
{phase:"Phase2", labourBudget: 100, labourHours: 2, labourCostRate: 42}
]
},
computed: {
labourCost: function(){
return this.record.labourHours * this.record.labourCostRate;
},
overheadCost: function(){
return this.record.labourCost * 1.36;
},
net: function(){
return this.record.netRevenue-this.record.labourCost-this.record.overheadCost;
}
}
})
</script>
</html>
ありがとうございました!私はあなたが提案したような方法でそれを働かせました! https://jsfiddle.net/k72qkbtp/ これは最良のアプローチではないと仮定するのは正しいでしょうか?計算されたプロパティのようなデータをキャッシュしないため、コンポーネントアプローチを推奨する理由があります(そうでなければ、と列)? コンポーネントのアプローチに修正しようとしましたが、これまでのところ、何が欠けていますか? https://jsfiddle.net/h1ujpft0/ – FirstRedPepper
私はコンポーネントビルを使用していると思います! https://jsfiddle.net/sb0b36ju/ 何らかの理由でテンプレートをテーブルの上にスローします。それを修正する方法はありますか?また、パフォーマンス面での方法と比較して、これを行う最善の方法ですか? – FirstRedPepper
私は最初の返信をタイプしていたので、ちょうど返答しました。これは正しいようです。テーブルをレンダリングするには、 '