helper.js 192 字节
Newer Older
B
baiy 已提交
1 2 3 4 5 6
export const openUrl = (url) => {
    if ("utools" in window && "shellOpenExternal" in window.utools) {
        return window.utools.shellOpenExternal(url)
    }
    return window.open(url);
}