# Runtime API VitePress offers several built-in APIs to let you access app data. VitePress also comes with a few built-in components that can be used globally. The helper methods are globally importable from `vitepress` and are typically used in custom theme Vue components. However, they are also usable inside `.md` pages because markdown files are compiled into Vue [Single-File Components](https://vuejs.org/guide/scaling-up/sfc.html). Methods that start with `use*` indicates that it is a [Vue 3 Composition API](https://vuejs.org/guide/introduction.html#composition-api) function ("Composable") that can only be used inside `setup()` or ` ``` ## `useRoute` Returns the current route object with the following type: ```ts interface Route { path: string data: PageData component: Component | null } ``` ## `useRouter` Returns the VitePress router instance so you can programmatically navigate to another page. ```ts interface Router { /** * Current route. */ route: Route /** * Navigate to a new URL. */ go: (to?: string) => Promise /** * Called before the route changes. Return `false` to cancel the navigation. */ onBeforeRouteChange?: (to: string) => Awaitable /** * Called before the page component is loaded (after the history state is * updated). Return `false` to cancel the navigation. */ onBeforePageLoad?: (to: string) => Awaitable /** * Called after the route changes. */ onAfterRouteChanged?: (to: string) => Awaitable } ``` ## `withBase` - **Type**: `(path: string) => string` Appends the configured [`base`](./site-config#base) to a given URL path. Also see [Base URL](../guide/asset-handling#base-url). ## `` The `` component displays the rendered markdown contents. Useful [when creating your own theme](../guide/custom-theme). ```vue ``` ## `` The `` component renders its slot only at client side. Because VitePress applications are server-rendered in Node.js when generating static builds, any Vue usage must conform to the universal code requirements. In short, make sure to only access Browser / DOM APIs in beforeMount or mounted hooks. If you are using or demoing components that are not SSR-friendly (for example, contain custom directives), you can wrap them inside the `ClientOnly` component. ```vue-html ``` - Related: [SSR Compatibility](../guide/ssr-compat) ## `$frontmatter` Directly access current page's [frontmatter](../guide/frontmatter) data in Vue expressions. ```md --- title: Hello --- # {{ $frontmatter.title }} ``` ## `$params` Directly access current page's [dynamic route params](../guide/routing#dynamic-routes) in Vue expressions. ```md - package name: {{ $params.pkg }} - version: {{ $params.version }} ```