<div @click="handleClick" :class="class" class="button-wrapper">
computed: {
class() {
return {
"button-red": this.color === "red",
"button-gray": this.color === "gray"
};
}
}
:class="class"
:[vue/valid-v-bind]
'v-bind' directives require an attribute value.
[vue/no-parsing-error]
Parsing error: Unexpected end of expression.