1.0.1 ā€¢ Published 6 years ago

vuex-logger-plugin v1.0.1

Weekly downloads
42
License
MIT
Repository
github
Last release
6 years ago

Vuex Logger Plugin

šŸ– Simplest Vuex Mutation Logger Plugin

Install

npm install --save vuex-logger-plugin

Usage

import Vue from 'vue';
import Vuex from 'vuex';
import VuexLoggerPlugin from 'vuex-logger-plugin'

Vue.use(Vuex);
const debug = process.env.NODE_ENV !== 'production';

export default new Vuex.Store({
  modules: {
    ...
  },
  strict: debug,
  plugins: debug ? [VuexLoggerPlugin] : [],
});