This commit is contained in:
sschum 2023-07-13 14:59:45 +02:00
parent 0ad1ecbc14
commit 6abb9bcf8d

View File

@ -67,6 +67,11 @@
removeCard(i) {
this.cards.splice(i, 1)
}
},
watch: {
message(newValue) {
console.log("Message changed: ", newValue)
}
}
})
MyVueApp.mount('#app')