Condition in v-bind:Style - VueJS

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

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

8条回答
  •  既然无缘
    2020-12-23 20:03

    For Background Color you have to pay special attention you can't use

    :style="[ isDark ? {background-color: 'black'}: {background-color: 'white'}]"
    

    it won't work you can use the backgroundColor

    :style="[ isDark ? {backgroundColor: 'black'}: {backgroundColor: 'white'}]"
    

提交回复
热议问题