mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-11 19:40:25 +08:00

* Refactor js submodule * Remove change-log * Update ocr module * Update ocr-detection module * Update ocr-detection module * Remove change-log
9 lines
194 B
TypeScript
9 lines
194 B
TypeScript
const domain = window.document.location.href.slice(
|
|
0,
|
|
window.document.location.href.indexOf("main")
|
|
);
|
|
|
|
export function openWindow(path: string) {
|
|
window.open(domain + path, "_blank");
|
|
}
|