[vue - 4] 배열 변수 값 사용
index4.html {{ product }} In Stock Out of Stock {{ detail }} {{ variant.variantColor }} index4.js var app = new Vue({ el: '#app', data: { product: 'Socks' , image: "https://www.vuemastery.com/images/challenges/vmSocks-green-onWhite.jpg" , inStock: true , details : ["80% cotton" , "20% polyester", "Gender-neutral"] , variants : [ { variantId : 2234, variantColor : "green"} , { variantId : 2235, v..