Answer the question
In order to leave comments, you need to log in
How to add a class to another element when clicking on a button in Vue?
How to add a class to another element when clicking on a button in Vue, for example, on the body when clicking on the button, the active class is hung?
Answer the question
In order to leave comments, you need to log in
for example on body
<button @click="onClick">
methods: {
onClick() {
document.body.classList.toggle('active');
},
},
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question