mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-22 11:15:14 +00:00
cut down on the amount of crap shown in the debug search menu
This commit is contained in:
parent
613594baea
commit
a97b2825ad
2 changed files with 3 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,3 +2,4 @@ node_modules
|
|||
nuxt/dist
|
||||
dist
|
||||
package-lock.json
|
||||
temp.js
|
||||
|
|
|
@ -21,8 +21,8 @@ export default {
|
|||
|
||||
methods: {
|
||||
textChanged() {
|
||||
this.$youtube.autoComplete(this.text, (data) => {
|
||||
this.response = data;
|
||||
this.$youtube.autoComplete(this.text, (res) => {
|
||||
this.response = res.data;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue