|
|
@ -36,23 +36,22 @@ const { site, theme, page, frontmatter } = useData()
|
|
|
|
## Results
|
|
|
|
## Results
|
|
|
|
|
|
|
|
|
|
|
|
### Theme Data
|
|
|
|
### Theme Data
|
|
|
|
|
|
|
|
<div class="language-json">
|
|
|
|
<pre>{{ theme }}</pre>
|
|
|
|
<pre>{{ theme }}</pre>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Page Data
|
|
|
|
### Page Data
|
|
|
|
|
|
|
|
<div class="language-json">
|
|
|
|
<pre>{{ page }}</pre>
|
|
|
|
<pre>{{ page }}</pre>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
### Page Frontmatter
|
|
|
|
### Page Frontmatter
|
|
|
|
|
|
|
|
<div class="language-json">
|
|
|
|
<pre>{{ frontmatter }}</pre>
|
|
|
|
<pre>{{ frontmatter }}</pre>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
## More
|
|
|
|
## More
|
|
|
|
|
|
|
|
|
|
|
|
Check out the documentation for the [full list of runtime APIs](https://vitepress.dev/reference/runtime-api#usedata).
|
|
|
|
Check out the documentation for the [full list of runtime APIs](https://vitepress.dev/reference/runtime-api#usedata).
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
pre {
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
overflow: auto;
|
|
|
|
|
|
|
|
background-color: var(--vp-code-block-bg);
|
|
|
|
|
|
|
|
padding: 1em;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|