Cristiano Magro
2024-12-26 8c672a568ad096f28d4c3a2ba95b01ecc30cc3ce
02 - basic/basics-05-using-the-native-event-object/app.js
@@ -2,12 +2,36 @@
  data() {
    return {
      counter: 0,
      name: ''
      name: "",
      cognome: "",
      nometot: "",
    };
  },
  watch: {
    // name(value){
    //   if (this.name === ''){
    //     this.nometot = '';
    //   }
    //   this.nometot = value + " Cognome";
    // }
  },
  computed: {
    fullname() {
      if (this.name === "" || this.cognome === "") {
        return "";
      }
      return this.name + " " + this.cognome;
    },
  },
  methods: {
    // outputFullname() {
    //   if (this.name === "" || this.cognome === "") {
    //     return "";
    //   }
    //   return this.name + " " + this.cognome;
    // },
    setName(event, lastName) {
      this.name = event.target.value + ' ' + lastName;
      this.name = event.target.value; //+ ' ' + lastName;
    },
    add(num) {
      this.counter = this.counter + num;
@@ -15,8 +39,12 @@
    reduce(num) {
      this.counter = this.counter - num;
      // this.counter--;
    }
  }
    },
    resetInput() {
      this.name = "";
      this.cogome = "";
    },
  },
});
app.mount('#events');
app.mount("#events");