Skip to content

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

{
  "siteTitle": "Vampire Rancher Wiki",
  "logo": "/logo.png",
  "nav": [
    {
      "text": "Home",
      "link": "/"
    },
    {
      "text": "Examples",
      "link": "/markdown-examples"
    }
  ],
  "sidebar": [
    {
      "text": "Examples",
      "items": [
        {
          "text": "Markdown Examples",
          "link": "/markdown-examples"
        },
        {
          "text": "Runtime API Examples",
          "link": "/api-examples"
        }
      ]
    },
    {
      "text": "Basics",
      "items": [
        {
          "text": "Getting Started",
          "link": "/basics/getting-started"
        }
      ]
    },
    {
      "text": "Quests",
      "items": [
        {
          "text": "Me, Rising",
          "link": "/quests/me-rising"
        }
      ]
    },
    {
      "text": "Characters",
      "items": [
        {
          "text": "Cranberry",
          "link": "/characters/cranberry"
        }
      ]
    },
    {
      "text": "Items",
      "items": []
    },
    {
      "text": "General Guides",
      "items": [
        {
          "text": "Selling Items",
          "link": "/markdown-examples"
        },
        {
          "text": "Attracting Travelers",
          "link": "/markdown-examples"
        }
      ]
    },
    {
      "text": "Skill Guides",
      "items": [
        {
          "text": "Farming",
          "link": "/skills/farming"
        }
      ]
    }
  ],
  "socialLinks": [
    {
      "icon": "discord",
      "link": "https://discord.com/invite/zCCj6UzBRk"
    },
    {
      "icon": "reddit",
      "link": "https://www.reddit.com/r/vampirerancher/"
    },
    {
      "icon": "steam",
      "link": "https://store.steampowered.com/app/2159260/Vampire_Rancher/"
    }
  ],
  "search": {
    "provider": "local"
  },
  "footer": {
    "message": "Content is available under <strong><a href=\"https://creativecommons.org/licenses/by-nc-sa/4.0/\" target=\"_blank\">Creative Commons CC BY-NC-SA 4.0</a></strong> unless otherwise noted.",
    "copyright": "Copyright © 2025-present Borispixel Studios"
  }
}

Page Data

{
  "title": "Runtime API Examples",
  "description": "",
  "frontmatter": {
    "outline": "deep"
  },
  "headers": [],
  "relativePath": "api-examples.md",
  "filePath": "api-examples.md",
  "lastUpdated": 1751733748000
}

Page Frontmatter

{
  "outline": "deep"
}

More

Check out the documentation for the full list of runtime APIs.