私のvueコンポーネントは次のとおりです:
<template>
<div>
<div class="panel-group" v-for="item in list">
...
<div class="panel-body">
<a role="button" data-toggle="collapse" href="#purchase-{{ item.id }}" class="pull-right" aria-expanded="false" aria-controls="collapseOne">
Show
</a>
</div>
<div id="purchase-{{ item.id }}" class="table-responsive panel-collapse collapse" role="tabpanel">
...
</div>
</div>
</div>
</template>
<script>
export default {
...
computed: {
list: function() {
return this.$store.state.transaction.list
},
...
}
}
</script>
実行すると、次のようなエラーが発生します。
Vueテンプレート構文エラー:
id = "purchase-{{item.id}}":属性内の補間が削除されました。代わりにv-bindまたはコロンの省略形を使用してください。
どうすれば解決できますか?