screen_rotation
Copied to Clipboard
<!DOCTYPE html> <html> <head> <script src="https://unpkg.com/vue@3/dist/vue.global.js"></script> </head> <body> <div id="app"> <h3>Vue Js Get current array index position</h3> <div v-for="(item, index) in items" :key="index"> {{ index }}: {{ item }} </div> </div> <script type="module"> const app = Vue.createApp({ data() { return { items: ['Apple', 'Banana', 'Orange', 'Mango'] } } }); app.mount('#app'); </script> <style> #app { margin: 20px; padding: 20px; background-color: #f2f2f2; } h3 { color: #333; } div[v-for] { margin-bottom: 10px; padding: 5px; background-color: #fff; border: 1px solid #ccc; } </style> </body> </html>