0.1.0 • Published 3 years ago

@alexlit/vue-console-log v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Vue Console Log

Plugin and mixin that adds a $log method for logging to the console

Connection

import Vue from 'vue';

import VueConsoleLogPlugin, {
  vueConsoleLogMixin,
} from '@alexlit/vue-console-log';

export { vueConsoleLogMixin };

Vue.use(VueConsoleLogPlugin, {
  isEnabled: process.env.NODE_ENV === 'development', // optional
  color: '#000', // optional
});

Usage

MyComponent.$log('hello'); // <my-component> hello