mirror of
https://github.com/devfake/flox.git
synced 2024-11-14 22:22:39 +01:00
26 lines
474 B
JavaScript
26 lines
474 B
JavaScript
import Vue from 'vue';
|
|
import Vuex from 'vuex'
|
|
|
|
import * as actions from './actions';
|
|
import mutations from './mutations';
|
|
|
|
Vue.use(Vuex);
|
|
|
|
export default new Vuex.Store({
|
|
state: {
|
|
items: [],
|
|
searchTitle: '',
|
|
userFilter: '',
|
|
loading: false,
|
|
clickedMoreLoading: false,
|
|
paginator: null,
|
|
colorScheme: '',
|
|
overlay: false,
|
|
modalData: {},
|
|
loadingModalData: true,
|
|
seasonActiveModal: 1,
|
|
modalType: ''
|
|
},
|
|
mutations,
|
|
actions
|
|
}); |