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 string locale compare Property </h2> <p>Compare two string</p> <p>String 1: {{str1}}</p> <p>String 2: {{str2}}</p> <button @click="myFunction">click me</button> <p>Results: {{results}}</p> </div> <script type="module"> import { createApp } from 'vue' createApp({ data() { return{ str1 : 'Apple', str2:'Banana', results:'' } }, methods:{ myFunction(){ this.results = this.str1.localeCompare(this.str2); }, } }).mount('#app') </script> </body> </head> </html>