您的当前位置:首页正文

vue中class和style设置的相关方法

2020-11-27 来源:爱站旅游

  1. :style="{}"

<strong :style="{color: 'red', backgroundColor: 'gray'}"></strong>
  1. :style="a"

    new Vue({
     el: '#box',
     data: {
     red: 'red',
     gray: 'gray',
     a: {
     color: 'red',
     backgroundColor: 'gray' //注意复合样式的书写规范
     }
     }
    });
    <strong :style="a">阿斯顿发</strong>
  2. :style="[a, b]", a, b对应的是data里的两个json数据

更多vue中class和style设置的相关方法 相关文章请关注PHP中文网!

显示全文