commit | author | age | ||
2eca01 | 1 | import { createApp } from 'vue'; |
CM | 2 | |
3 | import App from './App.vue'; | |
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'); |