Cristiano Magro
2024-12-26 38b8f3eacc6879bbce88acc406c99ddfcf68ef86
1
2
3
4
5
6
7
8
9
10
11
12
const app = Vue.createApp({
  data() {
    return { goals: [] };
  },
  methods: {
    addGoal() {
      this.goals.push(this.enteredGoal)
    },
  },
});
 
app.mount("#user-goals");