控制台
¥Console
console.log
args
<any[]>
调用 console.log()
时触发。接收传递给 console.log()
的参数数组。
¥Emitted when console.log()
is called. Receives and array of the arguments
passed to console.log()
.
console.info
args
<any[]>
调用 console.info()
时触发。接收传递给 console.info()
的参数数组。
¥Emitted when console.info()
is called. Receives and array of the arguments
passed to console.info()
.
console.debug
args
<any[]>
调用 console.debug()
时触发。接收传递给 console.debug()
的参数数组。
¥Emitted when console.debug()
is called. Receives and array of the arguments
passed to console.debug()
.
console.warn
args
<any[]>
调用 console.warn()
时触发。接收传递给 console.warn()
的参数数组。
¥Emitted when console.warn()
is called. Receives and array of the arguments
passed to console.warn()
.
console.error
args
<any[]>
调用 console.error()
时触发。接收传递给 console.error()
的参数数组。
¥Emitted when console.error()
is called. Receives and array of the arguments
passed to console.error()
.