const app = Vue.createApp({ data: () => ({ friends: [ { name: "Manuel Lorenz", phone: "01234 5678 991", email: "manuel@localhost.com", }, { name: "Julie Jones", phone: "09876 543 221", email: "julie@localhost.com", }, ], }), methods: {}, computed: {}, watch: {}, }); app.mount("#app");