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/vue-cli-01-a-new-vue-project/src/App.vue

33 lines
785 B
Vue
Raw Normal View History

2021-01-25 17:49:25 +01:00
<template>
<h2>My Friends</h2>
2021-01-25 18:00:09 +01:00
<ul>
<friend-contact></friend-contact>
<friend-contact></friend-contact>
</ul>
2021-01-25 17:49:25 +01:00
</template>
<script>
2021-01-25 18:00:09 +01:00
import FriendContact from "./components/FriendContact.vue";
2021-01-25 17:49:25 +01:00
export default {
2021-01-25 18:00:09 +01:00
components: { FriendContact },
2021-01-25 17:49:25 +01:00
data() {
return {
friends: [
{
id: "manuel",
name: "Manuel Lorenz",
phone: "0123 4567 890",
email: "manuel@localhost.com",
},
{
id: "julie",
name: "Julie Jones",
phone: "9876 5432 210",
email: "julie@localhost.com",
},
],
};
},
};
</script>