-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(docs): add vuepress to display docs * perf(examples): add full watch feature * fix(ob): close #45 * fix(arr): add oldVal for array mutation * doc: add quick-start * perf(doc): add deploy, fix assets path, add favicon, skip ci * perf(examples): update service, add doc about opening root dir * perf(computed): evaluate computed functions only when Dep.targetCb was called, but it's not done yet. update docs.
- Loading branch information
Showing
42 changed files
with
1,639 additions
and
187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ node_modules/* | |
coverage/ | ||
yarn-error.log | ||
yarn.lock | ||
docs/.vuepress/dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
module.exports = { | ||
base: '/tua-mp/', | ||
locales: { | ||
'/': { | ||
title: 'tua-mp', | ||
description: '🖖一款类 Vue 的渐进式小程序框架' | ||
} | ||
}, | ||
head: [ | ||
['link', { rel: 'icon', href: `/logo.png` }], | ||
], | ||
serviceWorker: true, | ||
themeConfig: { | ||
repo: 'tuateam/tua-mp', | ||
docsDir: 'docs', | ||
editLinks: true, | ||
editLinkText: '在 GitHub 上编辑此页', | ||
lastUpdated: '上次更新', | ||
nav: [ | ||
{ | ||
text: '快速上手', | ||
link: '/quick-start/', | ||
}, | ||
{ | ||
text: '生态系统', | ||
items: [ | ||
{ text: '构建工具', link: '/tua-mp-service/' }, | ||
{ text: '本地存储', link: '/tua-storage/' }, | ||
// { text: '命令行工具(开发中)', link: '/tua-cli' }, | ||
// { text: 'api 配置(待开源)', link: '/tua-api-wx' }, | ||
], | ||
}, | ||
], | ||
sidebar: { | ||
'/quick-start/': [ | ||
{ | ||
title: '快速上手', | ||
collapsable: false, | ||
children: [ | ||
'installation', | ||
'', | ||
'instance', | ||
'computed', | ||
'components', | ||
'simple-app', | ||
'vue-app', | ||
], | ||
}, | ||
], | ||
}, | ||
}, | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Oops, something went wrong.