Store+Vuetools: Remove some leftover artifacts that would break vuetools
This commit is contained in:
parent
0ad1518038
commit
84e15cccbb
|
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue