This repository has been archived on 2021-03-10. You can view files and clone it, but cannot push or open issues or pull requests.
perktree/frontend/src/store/index.js

26 lines
364 B
JavaScript

/*
* index.js
* Copyright (C) 2019 pavle <pavle.portic@tilda.center>
*
* Distributed under terms of the BSD-3-Clause license.
*/
import Vue from 'vue';
import Vuex from 'vuex';
import perks from './perks';
import auth from './auth';
Vue.use(Vuex);
const storeData = {
modules: {
perks,
auth,
},
};
export default new Vuex.Store(storeData);