mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
27 lines
549 B
Smarty
27 lines
549 B
Smarty
import { createStore } from 'vuex';
|
|
{{{IMPORT_MODULES}}};
|
|
{{{IMPORT_PLUGINS}}};
|
|
|
|
const modules = {{{MODULES}}};
|
|
const MUTATION_TYPES = {{{MUTATION_TYPES}}};
|
|
const ACTION_TYPES = {{{ACTION_TYPES}}};
|
|
const GETTER_TYPES = {{{GETTER_TYPES}}};
|
|
const conifg = {{{VUEX_CONFIG}}};
|
|
|
|
|
|
const install = function (app) {
|
|
app.use(createStore({
|
|
modules: modules,
|
|
plugins: {{{PLUGINS}}},
|
|
strict: conifg.strict,
|
|
devtools: conifg.devtools
|
|
}));
|
|
}
|
|
|
|
export {
|
|
install,
|
|
MUTATION_TYPES,
|
|
ACTION_TYPES,
|
|
GETTER_TYPES
|
|
};
|