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.
11 lines
236 B
11 lines
236 B
1 year ago
|
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);
|
||
|
}
|