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/lists-cond-01-starting-setup/app.js

16 lines
269 B
JavaScript
Raw Normal View History

2021-01-19 21:05:03 +01:00
const app = Vue.createApp({
2021-01-19 21:26:38 +01:00
data() {
return {
goals: [],
enteredGoalValue: "",
};
},
methods: {
addGoal() {
this.goals.push(this.enteredGoalValue);
},
},
2021-01-19 21:05:03 +01:00
});
2021-01-19 21:26:38 +01:00
app.mount("#user-goals");