Cristiano Magro
2024-12-30 2eca01af6b2d881073a0f2a102a5667da6c0bb3e
1
2
3
4
5
6
7
8
9
10
import { createApp } from 'vue';
 
import App from './App.vue';
import FriendContact from './components/FriendContact.vue';
 
const app = createApp(App);
 
app.component('friend-contact', FriendContact);
 
app.mount('#app');