vue-plugin-debug
v1.0.2
Published
vue-plugin-debug
Downloads
3
Readme
vue-plugin-debug
Installation
npm install vue-plugin-debug
Usage
import VuePluginDebug from 'vue-plugin-debug';
// install
Vue.use(VuePluginDebug);
You can then use debug anywhere:
// debug in the vue component
const debug = this.$debug.get('layout');
debug('page path: %s', 'hello-world');
// debug in the others
const debug = Vue.prototype.$debug.get('layout');
debug('page path: %s', 'hello-world');
License
MIT