You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

576 B

Runtime API Examples

This page demonstrates some of the runtime APIs provided by VitePress.

Site Data

The site data contains information about the entire site, such as the title and description.

<script setup>
import { useData } from 'vitepress'

const { site, theme, page, frontmatter } = useData()
</script>

<pre>{{ site }}</pre>
{{ site }}

Frontmatter

The frontmatter of the current page.

{{ frontmatter }}