UNPKG

@nuxt/ui

Version:

A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.

13 lines (12 loc) 233 B
import { usePage } from "@inertiajs/vue3"; export * from "./base.js"; export const useRoute = () => { const page = usePage(); return { get fullPath() { return page.url; } }; }; export const useRouter = () => { };