L5 starting code

This commit is contained in:
Adam Jahr 2020-06-19 17:23:40 -04:00
parent 2846669a3f
commit a903dd19cb

View File

@ -3,7 +3,8 @@ const app = Vue.createApp({
return {
product: 'Socks',
image: './assets/images/socks_blue.jpg',
inStock: true
inStock: true,
details: ['50% cotton', '30% wool', '20% polyester']
}
}
})