【发布时间】:2020-10-13 08:19:39
【问题描述】:
每当我单击按钮时,我都希望 div 向其添加 selected-class。我做错了什么?
template
.d-flex.align-items-center.mt-2(
:class="{ 'selected-class': itemSelected }",
)
p.mb-0.meal-plan Chicken Meal
b-button.breakfast-button.ml-auto(
href="#",
variant="primary",
@click="chooseBreakfast(item)"
) Choose
data() {
return {
itemSelected: false,
};
},
methods: {
chooseBreakfast(item) {
this.itemSelected = item;
},
【问题讨论】:
-
项目已定义?至少不在你的剪辑中