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"); |