mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-26 13:13:03 +00:00
remove search page (unused)
This commit is contained in:
parent
c05239f595
commit
724db4eaea
2 changed files with 2 additions and 24 deletions
|
@ -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,
|
||||
|
||||
|
|
|
@ -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>
|
Loading…
Reference in a new issue