Posts

Showing posts with the label vue-resource

Vue JS and Sails JS query params where clause

Image
Clash Royale CLAN TAG #URR8PPP Vue JS and Sails JS query params where clause i'm using Vue Resource to send http requests to my Sails JS backend everything is working fine, the only problem is the 'where' clause by sails isn't implementing the way it should here is my code my template <div class="content"> <input type="text" class="search" placeholder="Search Users" v-model="search"> <button v-on:click="searchUsers" class="add-btn search-btn"> <i class="fas fa-search"></i> </button> <div class="list"> <ul class="lists-group"> <template v-for="(user, index) in users"> <router-link v-bind:to="'users/user/' + user.id" class="lists-item">{{ user.firstName }} {{ user.lastName }}</router-link> </template> </ul> ...