Skip to content
This repository has been archived by the owner on Jan 29, 2022. It is now read-only.

Latest commit

 

History

History
26 lines (18 loc) · 460 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 460 Bytes

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