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 btoa() Method </h2> <p>Encode a string to Base64 in Vue.js</p> <button @click="myFunction">Click me</button> <p>String: {{string}}</p> <p>{{result}}</p> </div> <script type="module"> import { createApp } from 'vue' createApp({ data() { return{ string:'fontawesomeicons.com', result:'', } }, methods:{ myFunction(){ this.result = 'Encoded string: ' + btoa(this.string) } } }).mount('#app') </script> </body> </head> </html>