# plugin-detective/1.1.4/troubleshoot/app/src/store/index.js

Plugin Detective – Troubleshooting Conflicts, version 1.1.4. 27 lines.

- Page: https://pluginprobe.com/plugins/plugin-detective/1.1.4/code/troubleshoot/app/src/store/index.js
- Raw: https://pluginprobe.com/plugins/plugin-detective/1.1.4/raw/troubleshoot/app/src/store/index.js
- Modified: 2018-07-31T23:41:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/plugin-detective/1.1.4/code/troubleshoot/app/src/store/index.js#L10-L20`.

```javascript
import Vue from 'vue'
import Vuex from 'vuex'
import router from '../router'
import actions from './actions'
import mutations from './mutations'
import getters from './getters'

Vue.use(Vuex)

const state = {
  router,
  'api': undefined,
  'username': '',
  'password': '',
  'activeCase': undefined,
  'user_id': undefined,
  'requestProtocol': 'http:',
  'translations': {}
}

export default new Vuex.Store({
  state,
  actions,
  mutations,
  getters
})

```
