Appearance
Runtime API Examples
This page demonstrates usage of some of the runtime APIs provided by VitePress.
The main useData() API can be used to access site, theme, and page data for the current page. It works in both .md and .vue files:
md
<script setup>
import { useData } from 'vitepress'
const { theme, page, frontmatter } = useData()
</script>
## Results
### Theme Data
<pre>{{ theme }}</pre>
### Page Data
<pre>{{ page }}</pre>
### Page Frontmatter
<pre>{{ frontmatter }}</pre>Results
Theme Data
{
"logo": {
"light": "/logo/fossible-logo-light.svg",
"dark": "/logo/fossible-logo-dark.svg"
},
"siteTitle": false,
"nav": [
{
"text": "Digital Health",
"items": [
{
"text": "Biograph",
"link": "/products/biograph/",
"icon": "lucide-heart",
"subtitle": "CareOps & ERP Platform"
},
{
"text": "Medplum - FHIR CDR ",
"link": "/products/medplum/",
"icon": "lucide-database",
"subtitle": "Health Data Platform"
},
{
"text": "The Fossible Stack ",
"link": "/guide/stack",
"icon": "lucide-layers",
"subtitle": "Enterprise Stack"
}
]
},
{
"text": "Solutions",
"link": "/solutions/"
},
{
"text": "Enterprise",
"link": "/enterprise/"
},
{
"text": "Resources",
"items": [
{
"text": "Docs",
"link": "/guide/",
"icon": "lucide-book-open",
"subtitle": "Documentation"
},
{
"text": "Blog",
"link": "/blog/",
"icon": "lucide-pencil",
"subtitle": "Latest Updates"
}
]
},
{
"text": "|",
"link": ""
},
{
"text": "About",
"link": "/about/"
},
{
"text": "Contact Us",
"link": "/contact/"
}
],
"sidebar": {
"/guide/": [
{
"text": "Getting Started",
"items": [
{
"text": "Introduction",
"link": "/guide/"
},
{
"text": "Demo Sites",
"link": "/guide/demo-sites"
},
{
"text": "Design Tokens",
"link": "/guide/tokens"
},
{
"text": "Animation Demo",
"link": "/guide/animation-demo"
},
{
"text": "Components Demo",
"link": "/guide/components-demo"
}
]
},
{
"text": "Products & Services",
"items": [
{
"text": "Espresso Cloud",
"link": "/guide/espresso-cloud"
},
{
"text": "Hydra AI",
"link": "/guide/hydra-ai"
},
{
"text": "Fossible Sprints",
"link": "/guide/fossible-sprints"
},
{
"text": "Fossible Stack",
"link": "/guide/stack"
}
]
}
]
}
}Page Data
{
"title": "Runtime API Examples",
"description": "",
"frontmatter": {
"outline": "deep"
},
"headers": [],
"relativePath": "api-examples.md",
"filePath": "api-examples.md"
}Page Frontmatter
{
"outline": "deep"
}More
Check out the documentation for the full list of runtime APIs.