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
{
"nav": [
{
"text": "Home",
"link": "/"
},
{
"text": "Product Documentation",
"link": "/products/"
},
{
"text": "Compliance",
"link": "/compliance/"
},
{
"text": "Technical References",
"link": "/technical/"
},
{
"text": "Tools",
"link": "/tools/"
}
],
"sidebar": {
"/products/": [
{
"text": "Product Documentation",
"items": [
{
"text": "MDR-742",
"link": "/products/mdr-742"
},
{
"text": "MDR-784",
"link": "/products/mdr-784"
},
{
"text": "MDR-508",
"link": "/products/mdr-508"
},
{
"text": "PON Switch",
"link": "/products/pon-switch"
}
]
}
],
"/compliance/": [
{
"text": "Compliance",
"items": [
{
"text": "CE / RED",
"link": "/compliance/ce-red"
},
{
"text": "FCC / IC",
"link": "/compliance/fcc-ic"
},
{
"text": "E-Mark",
"link": "/compliance/emark"
}
]
}
],
"/technical/": [
{
"text": "Technical References",
"items": [
{
"text": "CAN Bus",
"link": "/technical/can-bus"
},
{
"text": "Video Signal",
"link": "/technical/video-signal"
},
{
"text": "Interface Specifications",
"link": "/technical/interfaces"
}
]
}
],
"/tools/": [
{
"text": "Tools",
"items": [
{
"text": "CB2 Troubleshooting",
"link": "/tools/cb2-troubleshoot"
}
]
}
]
},
"search": {
"provider": "local"
}
}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.