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.fromCharCode() Method </h2> <p>Convert Unicode to strings in Vue Js</p> <p>{{Numerical}}</p> <button @click="myFunction">click me </button> <p></p> <P>String Character:{{results}}</P> </div> <script type="module"> import { createApp } from 'vue' createApp({ data() { return{ Numerical :['70','79','78','84','65','87','69','83','79','77','69','73','67','79','78','83'], results:'', } }, methods:{ myFunction(){ this.results = String.fromCharCode(70,79,78,84,65,87,69,83,79,77,69,73,67,79,78,83); }, } }).mount('#app') </script> </body> </head> </html>