intro-to-vue/main.js
2026-01-13 14:23:10 +01:00

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