We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d6adf1 commit 810300eCopy full SHA for 810300e
packages/docs/docs/guide/basic-config.md
@@ -45,7 +45,8 @@ export default ({
45
Vue, // the version of Vue being used in the VuePress app
46
options, // the options for the root Vue instance
47
router, // the router instance for the app
48
- siteData // site metadata
+ siteData, // site metadata
49
+ isServer // is this enhancement applied in server-rendering or client
50
}) => {
51
// ...apply enhancements to the app
52
}
packages/docs/docs/zh/guide/basic-config.md
Vue, // VuePress 正在使用的 Vue 构造函数
options, // 附加到根实例的一些选项
router, // 当前应用的路由实例
- siteData // 站点元数据
+ siteData, // 站点元数据
+ isServer // 当前应用配置是处于 服务端渲染 或 客户端
// ...做一些其他的应用级别的优化
0 commit comments