Answer the question
In order to leave comments, you need to log in
How to change class from false to true in Vue?
Hello. Tell me, please, how to change the class in View from false to true after 4 seconds?
var body = new Vue({
el:'#main',
data:{
active_color: false
},
methods:{
ChangeColor: function(){
setTimeout(()=>{
this.active_color = true;
},40000)
}
}
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question