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' import $ from 'jquery'
const state = { const state = {
main: 0,
isGetChannelInfoRunning: false isGetChannelInfoRunning: false
} }
const getters = { const getters = {
getIsGetChannelInfoRunning ({ state }) { getIsGetChannelInfoRunning (state) {
return state.isGetChannelInfoRunning return state.isGetChannelInfoRunning
} }
} }

View File

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