先提交一手

This commit is contained in:
aixianling
2023-05-15 17:05:36 +08:00
parent b99f837c72
commit b773d87ff3
9 changed files with 263 additions and 40 deletions

View File

@@ -21,5 +21,11 @@ export function copyToClipboard(content) {
return true
}
return false
}
/**
* 浅拷贝
* @param any
* @returns {any}
*/
export const scopy = (any = null) => JSON.parse(JSON.stringify(any))