elearning/Frontend-Learner/node_modules/nuxt/dist/app/composables/url.js
2026-01-13 10:48:02 +07:00

8 lines
247 B
JavaScript

import { getRequestURL } from "h3";
import { useRequestEvent } from "./ssr.js";
export function useRequestURL(opts) {
if (import.meta.server) {
return getRequestURL(useRequestEvent(), opts);
}
return new URL(globalThis.location.href);
}