PHP Classes

File: src/store/index.js

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   WP Vue Kit Plugin   src/store/index.js   Download  
File: src/store/index.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: WP Vue Kit Plugin
Vue.js plugin to build WordPress user interfaces
Author: By
Last change:
Date: 1 year ago
Size: 327 bytes
 

Contents

Class file image Download
/** * External dependencies. */ import { createStore, createLogger } from "vuex"; import settings from "./modules/settings"; const debug = process.env.NODE_ENV !== "production"; const store = createStore({ modules: { settings, }, strict: debug, plugins: debug ? [createLogger()] : [] }); export default store;