software-development-2022/basic-vue-project/app.js

16 lines
270 B
JavaScript
Raw Normal View History

2022-11-17 15:48:17 +01:00
Vue.createApp({
data() {
return {
goals: [],
enteredValue: ``
};
},
methods: {
addGoal() {
this.goals.push(this.enteredValue);
this.enteredValue = ``;
}
}
}).mount(`#app`);