在class中添加 {’another‘:age>29} 后就报错了 这是为啥呀?

来源:2-5 条件渲染、列表渲染、Class与Style绑定

超级大傻花_biu_biu

2020-04-24 16:51

错误提示:

Uncaught DOMException: Failed to execute 'add' on 'DOMTokenList': The token provided ('[object Object]') contains HTML space characters, which are not valid in tokens.

源码:

 <div v-show="item.age > 29"

          :class="['active','add','more',{'another':true}]"    <-就是这一行 去掉那个another就可以 但是加上就不行。。我迷了。。

          :style = 'styleMsg'>

          {{item.name}}

        </div>


写回答 关注

1回答

  • 慕工程2159954
    2020-10-07 17:19:21

    {'another':item.age>29}

3小时速成 Vue2.x 核心技术

带你快速学习最流行的前端框架vue2.x的核心技术

82577 学习 · 489 问题

查看课程

相似问题