|
| 1 | +--- |
| 2 | +title: Themes |
| 3 | +type: examples |
| 4 | +is_new: true |
| 5 | +order: 13 |
| 6 | +--- |
| 7 | +> With the examples below built by our partners from [Creative Tim](https://creative-tim.com?affiliate_id=116187) you can see how a real world application is built, the technology stack behind it and how most of the concepts you've learned so far apply in a real world application. |
| 8 | +
|
| 9 | +{% raw %} |
| 10 | +<div id="themes-example" class="themes-grid"> |
| 11 | + <div v-for="product in products" :key="product.name" class="item-preview"> |
| 12 | + <a class="item-preview-img" :href="`https://www.creative-tim.com/product/${product.name}?affiliate_id=${affiliateId}`" rel="nofollow"> |
| 13 | + <img :src="`https://raw.githubusercontent.com/creativetimofficial/public-assets/master/${product.name}/${product.name}.jpg`" :alt="`${product.title} - ${product.description}`"></a> |
| 14 | + <div class="item-preview-title-container"> |
| 15 | + <h3 :id="product.name" data-type="theme-product-title" class="item-preview-title" :class="{'free': product.free}">{{product.title}}</h3> |
| 16 | + <b v-if="product.price" class="item-preview-price">{{product.price}}$</b> |
| 17 | + </div> |
| 18 | + <div class="item-preview-description">{{product.description}}</div> |
| 19 | + </div> |
| 20 | + <div class="see-more-container"> |
| 21 | + <a :href="`https://www.creative-tim.com/bootstrap-themes/vuejs-themes?affiliate_id=${affiliateId}`" |
| 22 | + class="button white see-more-link"> |
| 23 | + See More Themes |
| 24 | + </a> |
| 25 | + </div> |
| 26 | +</div> |
| 27 | +<script> |
| 28 | +new Vue({ |
| 29 | + el: '#themes-example', |
| 30 | + data: { |
| 31 | + affiliateId: 116187, |
| 32 | + products: [ |
| 33 | + { |
| 34 | + name: 'vue-argon-design-system', |
| 35 | + title: 'Vue Argon Design System', |
| 36 | + free: true, |
| 37 | + description: 'Free Vue.js Design System' |
| 38 | + }, |
| 39 | + { |
| 40 | + name: 'vue-black-dashboard-pro', |
| 41 | + title: 'Vue Black Dashboard Pro', |
| 42 | + free: false, |
| 43 | + price: 59, |
| 44 | + description: 'Premium Vue.js Admin Template' |
| 45 | + }, |
| 46 | + { |
| 47 | + name: 'vue-paper-dashboard-2-pro', |
| 48 | + title: 'Vue Paper Dashboard 2 Pro', |
| 49 | + free: false, |
| 50 | + price: 59, |
| 51 | + description: 'Premium Vue.js Admin Template' |
| 52 | + }, |
| 53 | + { |
| 54 | + name: 'vue-material-kit', |
| 55 | + title: 'Vue Material Kit', |
| 56 | + free: true, |
| 57 | + description: 'Free Vue.js UI Kit' |
| 58 | + }, |
| 59 | + { |
| 60 | + name: 'vue-black-dashboard', |
| 61 | + title: 'Vue Black Dashboard', |
| 62 | + free: true, |
| 63 | + description: 'Free Vue.js Admin Template' |
| 64 | + }, |
| 65 | + { |
| 66 | + name: 'vue-now-ui-kit-pro', |
| 67 | + title: 'Vue Now UI Kit Pro', |
| 68 | + free: false, |
| 69 | + price: 79, |
| 70 | + description: 'Premium Vue.js UI Kit' |
| 71 | + }, |
| 72 | + { |
| 73 | + name: 'vue-now-ui-dashboard-pro', |
| 74 | + title: 'Vue Now UI Dashboard Pro', |
| 75 | + free: false, |
| 76 | + price: 59, |
| 77 | + description: 'Premium Vue.js Admin Template' |
| 78 | + }, |
| 79 | + { |
| 80 | + name: 'vue-now-ui-kit', |
| 81 | + title: 'Vue Now UI Kit', |
| 82 | + free: true, |
| 83 | + description: 'Free Vue.js UI Kit' |
| 84 | + }, |
| 85 | + { |
| 86 | + name: 'vue-light-bootstrap-dashboard-pro', |
| 87 | + title: 'Vue Light Bootstrap Dashboard Pro', |
| 88 | + free: false, |
| 89 | + price: 49, |
| 90 | + description: 'Premium Vue.js Admin Template' |
| 91 | + }, |
| 92 | + { |
| 93 | + name: 'vue-material-dashboard-pro', |
| 94 | + title: 'Vue Material Dashboard Pro', |
| 95 | + free: false, |
| 96 | + price: 59, |
| 97 | + description: 'Premium Vue.js Admin Template' |
| 98 | + }, |
| 99 | + { |
| 100 | + name: 'vue-material-kit-pro', |
| 101 | + title: 'Vue Material Kit Pro', |
| 102 | + free: false, |
| 103 | + price: 89, |
| 104 | + description: 'Premium Vue.js UI Kit' |
| 105 | + }, |
| 106 | + { |
| 107 | + name: 'vue-light-bootstrap-dashboard', |
| 108 | + title: 'Vue Light Bootstrap Dashboard', |
| 109 | + free: true, |
| 110 | + description: 'Free Vue.js Admin Template' |
| 111 | + } |
| 112 | + ] |
| 113 | + } |
| 114 | +}) |
| 115 | +</script> |
| 116 | +{% endraw %} |
0 commit comments