4
2
mirror of https://github.com/getbible/app.git synced 2024-06-01 18:30:49 +00:00
app/src/components/Search.vue

58 lines
3.2 KiB
Vue
Raw Normal View History

2020-11-02 11:32:40 +00:00
<template>
<div id="offcanvas-slide" uk-offcanvas>
2020-11-24 20:57:04 +00:00
<div class="uk-offcanvas-bar secondary text-secondary">
2020-11-02 11:32:40 +00:00
<div class="uk-nav uk-nav-default">
<div class="uk-margin">
<form class="uk-search uk-search-default" action="javascript:void(0)">
<!-- <span uk-search-icon></span> -->
<input class="uk-search-input text-secondary primary rounded" v-model="search" type="search" placeholder="Search Words...">
2020-11-02 11:32:40 +00:00
<div class="uk-margin">
<button class="uk-button uk-button-default uk-button-small text-secondary primary rounded">Search</button>
2020-11-02 11:32:40 +00:00
</div>
</form>
</div>
<div class="uk-margin">
<div class="uk-margin">
<div class="uk-button-group text-primary ">
<button class="uk-button uk-button-default uk-button-small text-secondary primary uk-active">ALL WORDS</button>
<button class="uk-button uk-button-default uk-button-small text-secondary primary">ANY WORDS</button>
<button class="uk-button uk-button-default uk-button-small text-secondary primary">PHRASE</button>
2020-11-02 11:32:40 +00:00
</div>
</div>
<div class="uk-margin">
<div class="uk-button-group">
<button class="uk-button uk-button-default uk-button-small text-secondary primary uk-active">BIBLE</button>
<button class="uk-button uk-button-default uk-button-small text-secondary primary">OT</button>
<button class="uk-button uk-button-default uk-button-small text-secondary primary">NT</button>
<button class="uk-button uk-button-default uk-button-small text-secondary primary">CHAPTER</button>
2020-11-02 11:32:40 +00:00
</div>
</div>
<div class="uk-margin">
<div class="uk-button-group">
<button class="uk-button uk-button-default uk-button-small text-secondary primary uk-active">EXACT MATCH</button>
<button class="uk-button uk-button-default uk-button-small text-secondary primary">PARTIAL MATCH</button>
2020-11-02 11:32:40 +00:00
</div>
</div>
<div class="uk-margin">
<div class="uk-button-group">
<button class="uk-button uk-button-default uk-button-small text-secondary primary uk-active">CASE INSENSITIVE</button>
<button class="uk-button uk-button-default uk-button-small text-secondary primary">CASE SENSITIVE</button>
2020-11-02 11:32:40 +00:00
</div>
</div>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
}
</script>