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

16 lines
270 B
JavaScript

Vue.createApp({
data() {
return {
goals: [],
enteredValue: ``
};
},
methods: {
addGoal() {
this.goals.push(this.enteredValue);
this.enteredValue = ``;
}
}
}).mount(`#app`);