intro-to-vue/main.js
2020-06-19 19:45:00 -04:00

16 lines
420 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'],
sizes: ['S', 'M', 'L', 'XL'],
variants: [
{ id: 2234, color: 'green' },
{ id: 2235, color: 'blue' },
]
}
}
})