You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In VuePress, some core [computed](https://vuejs.org/v2/guide/computed.html#Computed-Properties) properties are built in for use by [default theme](../theme/default-theme-config.md) or custom themes.
8
+
9
+
## $site
10
+
11
+
This is the `$site` value of the website you see now:
12
+
13
+
```json
14
+
{
15
+
"title": "VuePress",
16
+
"description": "Vue 驱动的静态网站生成器",
17
+
"base": "/",
18
+
"pages": [
19
+
{
20
+
"lastUpdated": 1524027677000,
21
+
"path": "/",
22
+
"title": "VuePress",
23
+
"frontmatter": {}
24
+
},
25
+
...
26
+
]
27
+
}
28
+
```
29
+
30
+
## $page
31
+
32
+
This is the `$page` value of the page you see now:
0 commit comments