All files / pages SearchResults.vue

0% Statements 0/2
100% Branches 0/0
100% Functions 0/0
0% Lines 0/2

Press n or j to go to the next uncoveteal block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25                                                 
<template>
  <q-page padding style="padding-top: 66px">
    <InfiniteGallery/>
    <!-- content -->
    <q-page-sticky expand position="top" class="bg-white">
      <SearchInlineForm class="search-sticky q-ml-lg q-mt-lg"/>
    </q-page-sticky>
  </q-page>
</template>
 
<script>
import SearchInlineForm from "../components/SearchInlineForm";
import InfiniteGallery from "../components/InfiniteGallery";
export default {
  // name: 'PageName',
  components: {
    InfiniteGallery,
    SearchInlineForm
  }
};
</script>
 
<style>
</style>