screen_rotation
Copied to Clipboard
<html> <head> <script type="importmap"> { "imports": { "vue": "https://unpkg.com/vue@3/dist/vue.esm-browser.js" } } </script> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous"> </head> <body> <div id='app' class="container"> <h1>Vue js Arrays entries() function</h1> <p>Vue js Array Iterator object with key-value pairs is produced by entries():</p> <p>Framework : {{framework}}</p> <button class="btn btn-primary" @click="myFunction">Array entries</button> <p></p> <p v-for="result in results" v-html="result"></p> </div> <script type="module"> import { createApp } from 'vue' createApp({ data() { return { framework :['Vue','React','Angular','Node','Express'], results:'' } }, methods:{ myFunction(){ this.results = this.framework.entries(); } } }).mount('#app') </script> </body> </html>