diff --git a/basics-05-using-the-native-event-object/app.js b/basics-05-using-the-native-event-object/app.js index f95ae19..2b0e2c7 100644 --- a/basics-05-using-the-native-event-object/app.js +++ b/basics-05-using-the-native-event-object/app.js @@ -7,22 +7,16 @@ const app = Vue.createApp({ // fullName: "", }; }, - // watch: { - // name(value) { - // if (value === "") { - // this.fullName = ""; - // } else { - // this.fullName = value + " " + this.lastName; - // } - // }, - // lastName(value) { - // if (value === "") { - // this.fullName = ""; - // } else { - // this.fullName = this.name + " " + value; - // } - // }, - // }, + watch: { + counter(value) { + if (value > 50) { + const that = this; + setTimeout(function () { + that.counter = 0; + }, 2000); + } + }, + }, computed: { fullName() { if (this.name === "" || this.lastName === "") {