我正在尝试在我的Vue项目中使用debug package。我已经完成了一些步骤但没有奏效:
npm install debug
<script>
import debug from 'debug'
const log = debug('app:logging')
export default {
...
created(){
log('testing logging');
}
...
}
<script>
$env:DEBUG='app:*'; npm run serve
set DEBUG=app:* & npm run serve
cmder[dotenv][DEBUG] "DEBUG" is already defined in "process.env" and will not be overwritten
我该怎么做才能使其正常工作?我想在控制台中看到消息qazxsw poi。
刚看完testing logging
:
documentation