【发布时间】:2018-12-05 19:03:40
【问题描述】:
我想在磁贴的类名中包含 title 的值,以遵循我正在使用的 BEM 命名约定。如何做到这一点?
这是我尝试过的:
<h2 :class="{
'title': true,
'title--${item.title}': true
}">{{ item.title }}</h2>
但它最终看起来像:
<h2 class="title title--${item.title}">Title</h2>
【问题讨论】:
-
你试过
'title--'+item.title: true吗? -
@BoussadjraBrahim 是的,我做到了。我收到错误“- 无效表达式:意外的令牌 + in”
标签: javascript json vue.js vuejs2 bem