This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/2021-01-18 basics-05-using-.../app.js

48 lines
1.1 KiB
JavaScript
Raw Permalink Normal View History

2021-01-18 20:47:58 +01:00
const app = Vue.createApp({
2021-01-18 20:56:35 +01:00
data() {
return {
counter: 0,
name: "",
2021-01-18 21:28:07 +01:00
lastName: "",
// fullName: "",
2021-01-18 21:50:32 +01:00
vueUrl: "https://vueproject.com",
2021-01-18 20:56:35 +01:00
};
2021-01-18 20:47:58 +01:00
},
2021-01-18 21:34:43 +01:00
watch: {
counter(value) {
if (value > 50) {
const that = this;
setTimeout(function () {
that.counter = 0;
}, 2000);
}
},
},
computed: {
fullName() {
if (this.name === "" || this.lastName === "") {
return "";
2021-01-18 21:02:10 +01:00
}
return this.name + " " + this.lastName;
2021-01-18 21:02:10 +01:00
},
2021-01-18 21:14:00 +01:00
},
methods: {
setName(event) {
2021-01-18 20:56:35 +01:00
this.name = event.target.value;
},
add(num) {
this.counter = this.counter + num;
},
reduce(num) {
this.counter = this.counter - num;
// this.counter--;
},
resetInput() {
this.name = "";
this.lastName = "";
2021-01-18 20:56:35 +01:00
},
2021-01-18 20:47:58 +01:00
},
});
2021-01-18 20:56:35 +01:00
app.mount("#events");