gpt4 book ai didi

javascript - Vuejs中如何将css应用到劣等类

转载 作者:行者123 更新时间:2023-11-28 13:58:32 26 4
gpt4 key购买 nike

我有一个 html 文件,可以通过 vuejs 中的按钮工作。
v-bind:class 可以用于一个标签,如下所示。
它消失取决于 bool 数据的 bool 值。

<h3 v-bind:class="{active: bool}">{{counter.document}}</h3>

但我的目标是我要根据优等类(Class)的条件出现和消失劣等类(Class)。
我怎样才能正确地做到这一点?非常感谢您的阅读。

<div v-bind:class="{active: orderOptions.item.document}">
<button v-on:click="counter.document -= 1">-</button>
<h3>{{counter.document}}</h3>
<button v-on:click="counter.document += 1">+</button>
</div>

最佳答案

V-bind:style VueJS 中使用条件:

v-bind:style= "[condition ? {styleA} : {styleB}]"


<div v-bind:style="[orderOptions.item.document ?"active",""]">
<button v-on:click="counter.document -= 1">-</button>
<h3>{{counter.document}}</h3>
<button v-on:click="counter.document += 1">+</button>
</div>

关于javascript - Vuejs中如何将css应用到劣等类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58076076/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com