added footer tabs
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
<template>
|
||||
<div id="footer-tabs" class="col-1">
|
||||
<ul>
|
||||
<li class="history">
|
||||
<span>Historique de consultation</span>
|
||||
</li>
|
||||
<li class="results">
|
||||
<span>Resultas</span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'FooterTabs',
|
||||
data: () => ({
|
||||
|
||||
})
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
</style>
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div id="history">
|
||||
History
|
||||
<h2>Historique de consultation</h2>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div id="results">
|
||||
<h2>Resultats</h2>
|
||||
<h3>{{ keys }}</h3>
|
||||
<h3 v-if="keys">{{ keys }}</h3>
|
||||
<div class="results-list">
|
||||
<ul v-if="results.length">
|
||||
<li v-for="result in results" :key="result.uuid">
|
||||
|
||||
@@ -1,15 +1,13 @@
|
||||
<template>
|
||||
<div id="search">
|
||||
<div id="search" class="col-11">
|
||||
<form class="" action="index.html" method="post">
|
||||
<label for="keys">
|
||||
Search
|
||||
<input
|
||||
id="keys"
|
||||
v-model="keys"
|
||||
type="text"
|
||||
placeholder="search"
|
||||
>
|
||||
</label>
|
||||
<label htmlFor="keys">Search</label>
|
||||
<input
|
||||
id="keys"
|
||||
v-model="keys"
|
||||
type="text"
|
||||
placeholder="search"
|
||||
>
|
||||
<input
|
||||
id="search"
|
||||
type="submit"
|
||||
|
||||
Reference in New Issue
Block a user