screen_rotation
Copied to Clipboard
<!DOCTYPE html> <html> <head> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> </head> <body> <div id="app"> <h3>Vue Js Set Text of Div on click</h3> <div ref="myDiv">This is my div.</div> <button @click="setText">Set Text</button> </div> <script> new Vue({ el: '#app', methods: { setText() { this.$refs.myDiv.innerText = "New text for my div."; } } }); </script> </body> </html>