带有调试包的Vue js

时间:2019-04-24 11:55:45

标签: javascript debugging vue.js

我正在Vue项目中尝试使用debug package。 我已经做了一些步骤,但是没有用:

  • 已安装的软件包:npm install debug
  • 在vue组件中设置调试模块:
<script>
import debug from 'debug'

const log = debug('app:logging')

export default {
...
  created(){
    log('testing logging');
  }
...
}
<script>

  • 已在VS Code Powershell中运行项目:$env:DEBUG='app:*'; npm run serve
  • 尝试使用set DEBUG=app:* & npm run serve
  • 进行cmder
  • 尝试在.env文件中设置DEBUG得到消息[dotenv][DEBUG] "DEBUG" is already defined in "process.env" and will not be overwritten

我应该怎么做才能使它正常工作?我想在控制台中看到消息testing logging

1 个答案:

答案 0 :(得分:0)

只需阅读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');