Browse
For agents
About
Plugin Detective – Troubleshooting Conflicts
/
1.1.4
Plugin Detective – Troubleshooting Conflicts
v1.1.4
Switch version
1.2.35
1.2.33
1.2.32
1.2.31
1.1.1
1.1.2
1.1.3
1.1.4
1.1.5
1.1.6
1.1.7
1.1.8
1.1.9
1.2
1.2.1
1.2.10
1.2.12
1.2.13
1.2.14
1.2.16
1.2.19
1.2.20
1.2.22
1.2.23
1.2.24
All 54 releases
Overview
Code
plugin-detective
/
troubleshoot
/
app
/
src
/
store
/
index.js
index.js
in Plugin Detective – Troubleshooting Conflicts 1.1.4, at troubleshoot/app/src/store/index.js
27 lines
484 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
import
Vue
from
'
vue
'
2
import
Vuex
from
'
vuex
'
3
import
router
from
'
../router
'
4
import
actions
from
'
./actions
'
5
import
mutations
from
'
./mutations
'
6
import
getters
from
'
./getters
'
7
8
Vue
.
use
(
Vuex
)
9
10
const
state
=
{
11
router
,
12
'
api
'
:
undefined
,
13
'
username
'
:
'
'
,
14
'
password
'
:
'
'
,
15
'
activeCase
'
:
undefined
,
16
'
user_id
'
:
undefined
,
17
'
requestProtocol
'
:
'
http:
'
,
18
'
translations
'
:
{
}
19
}
20
21
export
default
new
Vuex
.
Store
(
{
22
state
,
23
actions
,
24
mutations
,
25
getters
26
}
)
27