remove search page (unused)

This commit is contained in:
Kenny 2022-02-25 13:57:58 -05:00
parent c05239f595
commit 724db4eaea
2 changed files with 2 additions and 24 deletions

View File

@ -5,7 +5,7 @@
<v-spacer />
<v-btn text class="toolbarAction mr-2 fill-height" color="white" @click="search = !search"><v-icon>mdi-magnify</v-icon></v-btn>
<v-menu offset-y content-class="mt-8">
<template v-slot:activator="{ on, attrs }">
<v-btn text class="toolbarAction fill-height" v-bind="attrs" v-on="on" color="white" style="padding-right: 0 !important;"><v-icon>mdi-dots-vertical</v-icon></v-btn>
@ -23,6 +23,7 @@
<div class="accent" style="height: 100%">
<div class="background" style="height: 100%; border-radius: 1rem 1rem 0 0;">
<nuxt />
</div>
</div>
@ -73,9 +74,7 @@
</style>
<script>
import search from '../pages/search.vue';
export default {
components: { search },
data: () => ({
search: false,

View File

@ -1,21 +0,0 @@
<template>
<div>
{{ searchData }}
</div>
</template>
<script>
export default {
data() {
return {
searchData: null
}
},
mounted() {
// video | playlist | channel | all
this.$youtube.search("test", "video", function(data) {
console.log(data)
})
}
}
</script>