dashboard
repositories
filestore
activity
search
login
udemy
/
corso-vue
corso vuejs
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
emitting custom event
Cristiano Magro
2024-12-28
8480d4ef05d995ee67c1460cf273c899fa59e89c
[udemy/corso-vue.git]
/
07 - development setup
/
vue-cli-01-a-new-vue-project
/
src
/
main.js
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");