index.html 824 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <link rel="stylesheet" type="text/css" href="./assets/css/style.css">
  7. <title>Product app</title>
  8. </head>
  9. <body>
  10. <div class="nav-bar"></div>
  11. <div id="app">
  12. <div class="product">
  13. <div class="product-image">
  14. <a :href="link">
  15. <!-- bind the src attribute to the "image" property -->
  16. <img
  17. v-bind:src="image"
  18. :alt="description" :title="description"
  19. /><!-- :attr is shortcut for v-bind:attr -->
  20. </a>
  21. </div>
  22. <div class="product-info">
  23. <h1>{{ product }}</h1>
  24. </div>
  25. </div>
  26. </div>
  27. <script src="./assets/js/vue.js"></script>
  28. <script src="main.js"></script>
  29. </body>
  30. </html>