software-development-2022/friendslist/app.js

22 lines
377 B
JavaScript
Raw Normal View History

2022-11-17 15:48:17 +01:00
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");