dashboard
repositories
filestore
activity
search
login
udemy
/
corso-vue
corso vuejs
summary
reflog
commits
tree
docs
forks
compare
view
|
history
|
commit
|
commitdiff
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
commit
|
author
|
age
5a0a7b
1
const app = Vue.createApp({
CM
2
data() {
3
return {};
4
},
5
computed: {},
6
watch: {},
7
methods: {},
8
});
9
10
app.mount("#app");