Cristiano Magro
2024-12-28 8480d4ef05d995ee67c1460cf273c899fa59e89c
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";
5
6 const app = createApp(App);
7
8 app.component("friend-contact", FriendContact);
9
10 app.mount("#app");