UNPKG

nuxt

Version:

Nuxt is a free and open-source framework with an intuitive and extendable way to create type-safe, performant and production-grade full-stack web applications and websites with Vue.js.

9 lines (8 loc) 243 B
import { getRequestURL } from "h3"; import { useRequestEvent } from "./ssr.js"; export function useRequestURL(opts) { if (import.meta.server) { return getRequestURL(useRequestEvent(), opts); } return new URL(window.location.href); }