dashboard
repositories
filestore
activity
search
login
udemy
/
corso-vue
corso vuejs
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
04 inizio monster slayer game
Cristiano Magro
2024-12-26
14370b6fdb3f16d6d7c1dbd0d62bebf69b6b6290
[udemy/corso-vue.git]
/
04 - monster slayer game
/
prj-monster-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("#game");