I try change color of div by clicked on him, but the event not responded, what I'm doing wrong? here is my code
HTML:
<div class="demo" @click="attachRed != attachRed" :class="{ red: attachRed }"></div>
script: '
export default {
data() {
return {
attachRed: false
}}
' style:
.demo {
width: 100px;
height: 100px;
background-color: gray;
display: inline-block;
margin: 10px;
}
.red {
background-color: red;
}