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