commit | author | age | ||
f31b9e | 1 | import { createApp } from "vue"; |
acdb17 | 2 | |
f31b9e | 3 | import App from "./App.vue"; |
CM | 4 | import FriendContact from "./components/FriendContact.vue"; |
2759e2 | 5 | import NewFriend from "./components/NewFriend.vue"; |
f31b9e | 6 | |
CM | 7 | const app = createApp(App); |
8 | ||
9 | app.component("friend-contact", FriendContact); | |
2759e2 | 10 | app.component("new-friend", NewFriend); |
f31b9e | 11 | |
CM | 12 | app.mount("#app"); |