Advertisement
Integery

Untitled

Dec 11th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.   <meta charset="UTF-8">
  6.   <title>VueJS</title>
  7.   <link rel="stylesheet" href="style.css">
  8. </head>
  9.  
  10. <body>
  11.   <div id="app">
  12.     <h1>{{ store_name }}</h1>
  13.     <div class="main">
  14.       <ul class="cards">
  15.         <li class="cards_item" v-for="product in products" :id="product.id">
  16.           <div class="card">
  17.             <div class="card_image"><img :src="product.img"></div>
  18.             <div class="card_content">
  19.               <h2 class="card_title">{{ product.title }}</h2>
  20.               <p class="card_text">US ${{ product.price }}</p>
  21.               <a :href="product.link" class="btn" :class="{ btn_black: btn.isDark }">{{ btn.title }}</a>
  22.             </div>
  23.           </div>
  24.         </li>
  25.       </ul>
  26.     </div>
  27.   </div>
  28.   <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
  29.   <script>
  30.     var app = new Vue({
  31.       el: '#app',
  32.       data: {
  33.         store_name: 'The Store',
  34.         btn: {
  35.           title: 'Buy It Now',
  36.           isDark: true,
  37.         },
  38.         products: [{
  39.             id: '1a',
  40.             title: 'iPhone XR',
  41.             price: 899,
  42.             link: 'http://www.madi.ru/',
  43.             img: 'iphone_xr.jpg'
  44.           },
  45.           {
  46.             id: '2b',
  47.             title: 'iPhone XS MAX',
  48.             price: 1099,
  49.             link: 'http://www.madi.ru/',
  50.             img: 'iphone_xs.jpg'
  51.           },
  52.           {
  53.             id: '3c',
  54.             title: 'iPhone X',
  55.             price: 1000,
  56.             link: 'http://www.madi.ru/',
  57.             img: 'iphone_x.jpg'
  58.           },
  59.         ],
  60.       }
  61.     })
  62.   </script>
  63. </body>
  64.  
  65. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement