mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-24 16:34:45 +02:00
11 lines
210 B
JavaScript
11 lines
210 B
JavaScript
import Vue from 'vue';
|
|
import Vuex from 'vuex';
|
|
import auth from './modules/auth';
|
|
|
|
Vue.use(Vuex);
|
|
|
|
export default new Vuex.Store({
|
|
strict: process.env.NODE_ENV !== 'production',
|
|
modules: { auth },
|
|
});
|