Store+Vuetools: Remove some leftover artifacts that would break vuetools

This commit is contained in:
Svallinn 2021-06-13 12:09:43 +01:00
parent 0ad1518038
commit 84e15cccbb
No known key found for this signature in database
GPG Key ID: 09FB527F34037CCA
2 changed files with 2 additions and 8 deletions

View File

@ -1,12 +1,11 @@
import $ from 'jquery'
const state = {
main: 0,
isGetChannelInfoRunning: false
}
const getters = {
getIsGetChannelInfoRunning ({ state }) {
getIsGetChannelInfoRunning (state) {
return state.isGetChannelInfoRunning
}
}

View File

@ -8,15 +8,10 @@ import { HttpsProxyAgent } from 'https-proxy-agent'
import { HttpProxyAgent } from 'http-proxy-agent'
const state = {
main: 0,
isYtSearchRunning: false
}
const getters = {
getMain ({ state }) {
return state.main
}
}
const getters = {}
const actions = {
ytSearch ({ commit, dispatch, rootState }, payload) {