diff options
author | Li Jin <dragon-fly@qq.com> | 2021-04-19 23:41:33 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2021-04-19 23:41:33 +0800 |
commit | 5d3b07801456d16dcc2c75dcccd48d508a6b60cc (patch) | |
tree | 2df1a154bf58d93f2475df02afbd15f1a8ba2963 /doc/docs/.vuepress/enhanceApp.js | |
parent | ea82666506b57d6e905b7f2e5fe78498fe5a7abd (diff) | |
download | yuescript-5d3b07801456d16dcc2c75dcccd48d508a6b60cc.tar.gz yuescript-5d3b07801456d16dcc2c75dcccd48d508a6b60cc.tar.bz2 yuescript-5d3b07801456d16dcc2c75dcccd48d508a6b60cc.zip |
first commit for Yuescript document site.
Diffstat (limited to 'doc/docs/.vuepress/enhanceApp.js')
-rwxr-xr-x | doc/docs/.vuepress/enhanceApp.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/docs/.vuepress/enhanceApp.js b/doc/docs/.vuepress/enhanceApp.js new file mode 100755 index 0000000..8452a86 --- /dev/null +++ b/doc/docs/.vuepress/enhanceApp.js | |||
@@ -0,0 +1,14 @@ | |||
1 | /** | ||
2 | * Client app enhancement file. | ||
3 | * | ||
4 | * https://v1.vuepress.vuejs.org/guide/basic-config.html#app-level-enhancements | ||
5 | */ | ||
6 | |||
7 | export default ({ | ||
8 | Vue, // the version of Vue being used in the VuePress app | ||
9 | options, // the options for the root Vue instance | ||
10 | router, // the router instance for the app | ||
11 | siteData // site metadata | ||
12 | }) => { | ||
13 | // ...apply enhancements for the site. | ||
14 | } | ||