intro-to-vue/main.js
2020-05-14 04:43:10 -04:00

13 lines
158 B
JavaScript

const app = new Vue({
el: '#app',
data: {
premium: true,
cart: [],
},
methods: {
updateCart(id) {
this.cart.push(id)
},
},
})