1234567891011121314151617181920212223242526272829303132333435 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="stylesheet" type="text/css" href="./assets/css/style.css">
- <title>Product app</title>
- </head>
- <body>
- <div class="nav-bar"></div>
- <div id="app">
- <div class="product">
- <div class="product-image">
- <a :href="link">
- <!-- bind the src attribute to the "image" property -->
- <img
- v-bind:src="image"
- :alt="description" :title="description"
- /><!-- :attr is shortcut for v-bind:attr -->
- </a>
- </div>
- <div class="product-info">
- <h1 v-cloak>{{ product }}</h1>
- <p v-cloak v-show="inventory > 10">In stock</p>
- <p v-cloak v-show="inventory <= 10 && inventory > 0">Limited stock</p>
- <p v-cloak v-show="inventory <= 0">Out of stock</p>
- <p v-if="onSale">On sale! Act fast.</p>
- </div>
- </div>
- </div>
- <script src="./assets/js/vue.js"></script>
- <script src="main.js"></script>
- </body>
- </html>
|