Hello! Is it possible to filter items by adding the filtering formula inside a Vue.js attribute instead of a URL parameter? Like using v-if or similar…
Thanks!
Hello! Is it possible to filter items by adding the filtering formula inside a Vue.js attribute instead of a URL parameter? Like using v-if or similar…
Thanks!
This is an oldie, but in case anyone else is looking for something like this, check on this post and the link to the Github repo within - Vue JS v-if
implemented here, might be of use:
<div v-for="element in item">
<div v-bind:class="element.style">
<tag v-if="element.style == 'img'" :is="element.style" v-bind:src="element.content"></tag>
<tag v-else-if="element.style !== 'img'" :is="element.style">{{ element.content }}</tag>
</div>
</div>
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.