ส่วนประกอบ 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 หรือโคลอนชวเลขแทน
จะแก้ได้อย่างไร?