screen_rotation
Copied to Clipboard
<!DOCTYPE html> <html lang="en"> <head> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> </head> <body> <div id="app"> <h3>Vue Js Change Button Text Color on Click</h3> <button :class="{ 'highlighted': isClicked }" @click="isClicked = !isClicked">Click Me</button> </div> <script type="module"> const app = new Vue({ el: "#app", data() { return { isClicked: false }; }, }); </script> <style scoped> #app { text-align: center; padding: 20px; } h3 { font-size: 24px; margin-bottom: 20px; } button { padding: 10px 20px; font-size: 18px; background-color: #007bff; color: #fff; border: none; border-radius: 5px; cursor: pointer; } button.highlighted { color: yellowgreen; } </style> </body> </html>