07 - development setup/vue-cli-01-a-new-vue-project/src/main.js
@@ -2,9 +2,11 @@ import App from "./App.vue"; import FriendContact from "./components/FriendContact.vue"; import NewFriend from "./components/NewFriend.vue"; const app = createApp(App); app.component("friend-contact", FriendContact); app.component("new-friend", NewFriend); app.mount("#app");