setup basic app with data

This commit is contained in:
Andreas Zweili 2021-01-25 12:13:12 +01:00
parent 401123094c
commit 2756418cec
1 changed files with 24 additions and 0 deletions

View File

@ -1 +1,25 @@
"use strict";
const app = Vue.createApp({
data() {
return {
friends: [
{
id: "manuel",
name: "Manuel Lorenz",
phone: "01234 5678 991",
email: "manuel@localhost.com",
},
{
id: "julie",
name: "Julie Jones",
phone: "09876 543 221",
email: "julie@localhost.com",
},
],
};
},
methods: {},
});
app.mount("app");