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 toUpperCase Method </h2> <p>Convert string to Upper case uer input in Vue Js</p> <input type='text' placeholder='Enter Character' v-model="name" @input="myFunction"/> <p>Upper Case :{{results}}</p> </div> <script type="module"> import { createApp } from 'vue' createApp({ data() { return{ name:'', results:'' } }, methods:{ myFunction(){ this.results = this.name.toUpperCase(); }, } }).mount('#app') </script> </body> </head> </html>