mirror of
https://github.com/creativetimofficial/vue-material-kit.git
synced 2025-05-24 22:04:21 +08:00
Унёс поиск в отдельный компонент, задолбало
This commit is contained in:
parent
494a6a0ddb
commit
0c59ffddf4
@ -23,6 +23,7 @@ import Header from "../../examples/Header.vue";
|
|||||||
|
|
||||||
// sections
|
// sections
|
||||||
import PresentationCounter from "./Sections/PresentationCounter.vue";
|
import PresentationCounter from "./Sections/PresentationCounter.vue";
|
||||||
|
import PresentationSearch from "./Sections/PresentationSearch.vue";
|
||||||
|
|
||||||
|
|
||||||
//images
|
//images
|
||||||
@ -92,11 +93,8 @@ export default {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<!-- Тут надо будет заменить на красивую строчку -->
|
<PresentationSearch />
|
||||||
<input type="text" v-model="searchQuery" placeholder="Поиск по проектам и людям" />
|
|
||||||
<button type="submit" @click="search">Go</button>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
10
src/views/Presentation/Sections/PresentationSearch.vue
Normal file
10
src/views/Presentation/Sections/PresentationSearch.vue
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<template>
|
||||||
|
<h1>Тут будет поиск!</h1>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'PresentationSearch',
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user