screen_rotation
Copied to Clipboard
<html> <head> <script type="importmap"> { "imports": { "vue": "https://unpkg.com/vue@3/dist/vue.esm-browser.js" } } </script> <body> <div id="app"> <h2>Vue js String toString Method </h2> <button @click="myFunction">click me</button> <p>Print string value as a string in Vue Js</p> <p>Text: {{text}} <p>Return String: {{results}}</p> </div> <script type="module"> import { createApp } from 'vue' createApp({ data() { return{ text:'How are David!', results:'' } }, methods:{ myFunction(){ this.results = this.text.toString(); }, } }).mount('#app') </script> </body> </head> </html>