You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import {OPEN_LOG} from "@/config/config"; |
|
|
|
/** |
|
* 替代 console.log() |
|
* @param data |
|
*/ |
|
export default function (...data){ |
|
if (!OPEN_LOG) return; |
|
// console.log("修改 OPEN_LOG = false; 关闭打印") |
|
console.log(...data); |
|
} |