Cristiano Magro
2024-12-26 8c672a568ad096f28d4c3a2ba95b01ecc30cc3ce
02 - basic/basics-03-events-starting-code/app.js
@@ -1,13 +1,20 @@
const app = Vue.createApp({
  data() {
    return {
      counter: 0,
      name,
      counter: 10,
      name: '',
      confirmedName: '',
    };
  },
  methods: {
    confirmInput(){
      this.confirmedName = this.name;
    },
    submitForm(event){
      alert("Subit form");
    },
    setName(event){
        this.name = event.target.value;
      this.name= event.target.value ;
    },
    add(num) {
      this.counter = this.counter + num;