Condition in v-bind:Style - VueJS

后端 未结 8 2253
遥遥无期
遥遥无期 2020-12-23 19:28

I have an easy question for which I hope you could help:

8条回答
  •  情书的邮戳
    2020-12-23 19:57

    Feed Git's answer is perfect, here's another example with multiple attributes. Just separate with commas:

    :style="[printing ? {'margin' : '0px 0px 20px 0px', 'min-height': '830px', 'box- shadow': 'none', 'border': 'none'} : {'margin': '0px 0px 20px 0px', 'min-height': '830px'}]
    

    The form follows (for someone like me who's new at this):

    :style="[boolVariable ? { true } : { false }]
    

提交回复
热议问题