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 clone of array of object</h3> <p>{{questions}}</p> </div> <script type="module"> const app = Vue.createApp({ data() { return { defaultQuestion: { title: 'What is the capital of France?', option1: 'London', option2: 'Paris', option3: 'Berlin', option4: 'Madrid', correctAnswer: 'Paris' }, questions: [] } }, mounted() { this.questions.push({ ...this.defaultQuestion }); } }); app.mount('#app'); </script> </body> </html>