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

82 lines
4.1 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> -->
2021-01-08 13:09:47 +00:00
<input class="uk-search-input text-secondary primary rounded" v-model="search_text" 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>
2021-01-08 13:09:47 +00:00
<div class="uk-button-group" data-uk-button-radio>
<label class="uk-button primary">
<input class="primary" type="radio" checked="checked" v-model="gender" value="0" style="display:none;"/>
Male
</label>
<label class="uk-button primary">
<input type="radio" v-model="gender" value="1" style="display:none;"/>
Female
</label>
</div>
{{gender}}
<!-- <input type="color" name="theme" id=""> -->
2020-11-02 11:32:40 +00:00
<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 {
2021-01-08 13:09:47 +00:00
data(){
return {
search_text: '',
search_area: '',
match: '',
sensitivity: '',
words: '',
gender: '',
}
},
methods: {
}
2020-11-02 11:32:40 +00:00
}
</script>