[Vuejs]-Vue js with debug package

0👍

Just read the documentation:

var log = debug('app:log');
// set this namespace to log via console.log
log.log = console.log.bind(console); // don't forget to bind to console!
log('goes to stdout');

Leave a comment