dashboard
repositories
filestore
activity
search
login
udemy
/
corso-vue
corso vuejs
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
06 inizio modulo: introducting components
Cristiano Magro
2024-12-27
5a0a7bfaa870ec08c9e93b150af83eef8997cb68
[udemy/corso-vue.git]
/
06 - introducing components
/
xno-cmp-intro-01-starting-setup
/
app.js
1
2
3
4
5
6
7
8
9
10
const app = Vue.createApp({
data() {
return {};
},
computed: {},
watch: {},
methods: {},
});
app.mount("#app");