我想添加以下样式i,该样式适用于html
<div style="text-decoration: line-through">
现在正在vuejs2中尝试
<div :style="{'text-decoration: line-through':true}">
但是以上方法不起作用
我要去哪里错了?
答案 0 :(得分:0)
通过提供键/值对将对象绑定到style
属性。
我怀疑你想要的是
<div :style="{'text-decoration': condition ? 'line-through' : 'initial'}">