:class数组写法
<!--more-->
```markup
<div :class="[
activeTag,
activeCss,
{ 'red-btn': isPosition}
]">
```
```javascript
computed: {
activeTag() {
return this.fullState == 3 ? 'yellow-btn' : 'gray-btn'
},
activeCss() {
return this.audience ? 'yel
more...



