main.js 297 B

123456789101112
  1. const app = new Vue({
  2. el: "#app",
  3. data: {
  4. description: "Chaussettes montantes",
  5. image: "./assets/img/vmSocks-green-onWhite.jpg",
  6. inventory: 90,
  7. link: "https://www.google.com/search?q=vuejs+socks",
  8. onSale: false,
  9. product: "Socks",
  10. }
  11. });