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/basics-03-events-starting-code/app.js

18 lines
283 B
JavaScript
Raw Normal View History

2021-01-18 17:17:34 +01:00
const app = Vue.createApp({
2021-01-18 17:40:53 +01:00
data() {
return {
counter: 0,
};
},
2021-01-18 17:52:39 +01:00
methods: {
increaseCounter() {
this.counter++;
},
decreaseCounter() {
this.counter--;
},
},
2021-01-18 17:17:34 +01:00
});
2021-01-18 17:40:53 +01:00
app.mount("#events");