intro-to-vue/main.js
2020-07-20 23:51:35 -04:00

14 lines
348 B
JavaScript

const app = Vue.createApp({
data() {
return {
product: 'Socks',
image: './assets/images/socks_blue.jpg',
inStock: true,
details: ['50% cotton', '30% wool', '20% polyester'],
// solution
sizes: ['S', 'M', 'L', 'XL', 'XXL']
// solution
}
}
})