This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/vue-cli-01-a-new-vue-project/src/main.js

10 lines
216 B
JavaScript
Raw Normal View History

2021-01-25 17:21:35 +01:00
import { createApp } from "vue";
2021-01-25 17:49:25 +01:00
import App from "./App.vue";
2021-01-25 18:00:09 +01:00
import FriendContact from "./components/FriendContact";
2021-01-25 17:21:15 +01:00
2021-01-25 18:00:09 +01:00
const app = createApp(App);
app.component("friend-contact", FriendContact);
app.mount("#app");