Can the searchbar filter for non-list items? In my example I have a series of expanding cards I would like it to work on. The card component from the below example has the class of “card-header-text” as the text I want to search in.
Example:
<f7-navbar title="Explore" large title-large transparent> <f7-nav-right><f7-block> <f7-link class="searchbar-enable" data-searchbar=".searchbar-demo" icon-ios="f7:search" icon-aurora="f7:search" icon-md="material:search"></f7-link></f7-block> </f7-nav-right> <f7-searchbar class="searchbar-demo" expandable search-container=".search-list" search-in=".card-header-text" :disable-button="!$theme.aurora" ></f7-searchbar> </f7-navbar> <f7-list class="searchbar-not-found"> <f7-list-item title="Nothing found"></f7-list-item> <f7-button large>+ Add new</f7-button> </f7-list> <div class="row"> <div class="col-100 medium-50 search-list searchbar-found" v-for="book of books" :key="book['.key']"> <bookCard :bookTitle='book.search' :author='author.uid'/> </div> </div>