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 sort() Array Method</h2> <button @click="myFunction">Sort Array</button> <p v-for="site in sites">{{site}}</p> </div> <script type="module"> import { createApp } from 'vue' createApp({ data() { return{ sites:['Sarkari Naukri Exams','Font Awesome Icons','Tutorials Plane','School Geeks Technology'], results:'' } }, methods:{ myFunction(){ this.results = this.sites.sort(); }, } }).mount('#app') </script> </body> </head> </html>