vue-plugin-debug
npm install vue-plugin-debug
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');
MIT