This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/cmp-intro-01-starting-setup/app.js

26 lines
585 B
JavaScript
Raw Normal View History

2021-01-25 12:06:48 +01:00
"use strict";
2021-01-25 12:13:12 +01:00
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: {},
});
2021-01-25 12:17:00 +01:00
app.mount("#app");