Skip to content

Instantly share code, notes, and snippets.

@jjuanrivvera99
Created March 26, 2020 18:37
Show Gist options
  • Save jjuanrivvera99/c474e9361802a3b46e6bb09e19887792 to your computer and use it in GitHub Desktop.
Save jjuanrivvera99/c474e9361802a3b46e6bb09e19887792 to your computer and use it in GitHub Desktop.
Vue/Bootstrap Template
<div id="app">
<nav class="navbar navbar-light bg-light fixed-top">
<div class="navbar-text ml-auto">
<b>cart:</b>
<span class="badge badge-pill badge-success"></span>
</div>
</nav>
<div class="form-inline mr-auto mt-5">
<label class="font-weight-bold mr-2" for="formMax">max</label>
<input type="text" id="formMax" class="form-control w-25" v-model="maximum">
</div>
<input type="range" class="custom-range" min="0" max="200" v-model="maximum">
<div class="row d-flex mb-3 align-items-center"
v-for="item in products"
v-if="item.price<=Number(maximum)">
<div class="col-1 m-auto">
<button class="btn btn-info">+</button>
</div>
<div class="col-4">
<img class="img-fluid d-block" :src="item.image" :alt="item.name">
</div>
<div class="col">
<h3 class="text-info">{{ item.name }}</h3>
<p class="mb-0">{{ item.description }}</p>
<div class="h5 float-right">${{ Number(item.price) }}</div>
</div>
</div>
</div>
var app = new Vue({
el: '#app',
data: {
maximum: 99,
products: null
},
mounted: function() {
fetch('https://hplussport.com/api/products/order/price')
.then(response => response.json())
.then(data => {
this.products = data;
})
}
});
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" rel="stylesheet" />

Vue/Bootstrap Template

This is a template for working with Vue.js with the Bootstrap framework pre-installed.

A Pen by Ray Villalobos on CodePen.

License.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment