14 lines
348 B
JavaScript
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
|
|
}
|
|
}
|
|
})
|