dashboard
repositories
filestore
activity
search
login
udemy
/
corso-vue
corso vuejs
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
step lezione 09
Cristiano Magro
2025-01-06
4f1007a220ad55da91012edba0cfa14f006615ca
[udemy/corso-vue.git]
/
09 - deeper into components
/
cmp-adv-02-scoped-styles
/
src
/
main.js
1
2
3
4
5
6
7
8
9
10
import { createApp } from 'vue';
import App from './App.vue';
import BaseBadge from './components/BaseBadge.vue';
const app = createApp(App);
app.component('base-badge', BaseBadge);
app.mount('#app');