mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[Doc] change document site path to /zanui/vant (#262)
* [bugfix] CouponList always show empty info * [bugfix] add click feedback of buttons in components * [Doc] add custom theme document * [new feature] Notice bar support more props * [bugfix] PullRefresh test cases * [bugfix] unused NoticeBar style * [bugfix] Swipe width calc error * [Doc] english document of all action components * [Doc] change document site path to /zanui/vant * [Doc] fix
This commit is contained in:
parent
a7d8379514
commit
a186f6958d
@ -84,7 +84,7 @@ Vue.use(Vant);
|
|||||||
<script src="https://unpkg.com/vant/lib/vant.min.js"></script>
|
<script src="https://unpkg.com/vant/lib/vant.min.js"></script>
|
||||||
```
|
```
|
||||||
|
|
||||||
See more in [Quickstart](https://www.youzanyun.com/zanui/vue#/en-US/component/quickstart).
|
See more in [Quickstart](https://www.youzanyun.com/zanui/vant#/en-US/component/quickstart).
|
||||||
|
|
||||||
## Contribution
|
## Contribution
|
||||||
Please make sure to read the [Contributing Guide](./.github/CONTRIBUTING.md) before making a pull request.
|
Please make sure to read the [Contributing Guide](./.github/CONTRIBUTING.md) before making a pull request.
|
||||||
@ -93,8 +93,8 @@ Please make sure to read the [Contributing Guide](./.github/CONTRIBUTING.md) bef
|
|||||||
Modern browsers and Android 4.0+, iOS 6+.
|
Modern browsers and Android 4.0+, iOS 6+.
|
||||||
|
|
||||||
## Links
|
## Links
|
||||||
- [Documentation](https://www.youzanyun.com/zanui/vue)
|
- [Documentation](https://www.youzanyun.com/zanui/vant)
|
||||||
- [Change log](https://www.youzanyun.com/zanui/vue#/en-US/component/changelog)
|
- [Change log](https://www.youzanyun.com/zanui/vant#/en-US/component/changelog)
|
||||||
- [React UI Zent](https://www.youzanyun.com/zanui/react)
|
- [React UI Zent](https://www.youzanyun.com/zanui/react)
|
||||||
- [vue-cli-template-vant](https://github.com/youzan/vue-cli-template-vant)
|
- [vue-cli-template-vant](https://github.com/youzan/vue-cli-template-vant)
|
||||||
- [vant-demo](https://github.com/chenjiahan/vant-demo)
|
- [vant-demo](https://github.com/chenjiahan/vant-demo)
|
||||||
|
@ -82,7 +82,7 @@ Vue.use(Vant);
|
|||||||
<script src="https://unpkg.com/vant/lib/vant.min.js"></script>
|
<script src="https://unpkg.com/vant/lib/vant.min.js"></script>
|
||||||
```
|
```
|
||||||
|
|
||||||
更多内容请参考 [快速上手](https://www.youzanyun.com/zanui/vue#/zh-CN/component/quickstart).
|
更多内容请参考 [快速上手](https://www.youzanyun.com/zanui/vant#/zh-CN/component/quickstart).
|
||||||
|
|
||||||
## 贡献代码
|
## 贡献代码
|
||||||
|
|
||||||
@ -100,8 +100,8 @@ Vue.use(Vant);
|
|||||||

|

|
||||||
|
|
||||||
## 链接
|
## 链接
|
||||||
- [详细文档](https://www.youzanyun.com/zanui/vue)
|
- [详细文档](https://www.youzanyun.com/zanui/vant)
|
||||||
- [更新日志](https://www.youzanyun.com/zanui/vue#/en-US/component/changelog)
|
- [更新日志](https://www.youzanyun.com/zanui/vant#/en-US/component/changelog)
|
||||||
- [React 组件库 Zent](https://www.youzanyun.com/zanui/react)
|
- [React 组件库 Zent](https://www.youzanyun.com/zanui/react)
|
||||||
- [vue-cli-template-vant](https://github.com/youzan/vue-cli-template-vant)
|
- [vue-cli-template-vant](https://github.com/youzan/vue-cli-template-vant)
|
||||||
- [vant-demo](https://github.com/chenjiahan/vant-demo)
|
- [vant-demo](https://github.com/chenjiahan/vant-demo)
|
||||||
|
@ -6,7 +6,7 @@ const devConfig = require('./webpack.config.dev.js');
|
|||||||
module.exports = merge(devConfig, {
|
module.exports = merge(devConfig, {
|
||||||
output: {
|
output: {
|
||||||
path: path.join(__dirname, '../docs/dist'),
|
path: path.join(__dirname, '../docs/dist'),
|
||||||
publicPath: 'https://b.yzcdn.cn/zanui/vue/',
|
publicPath: 'https://b.yzcdn.cn/zanui/vant/',
|
||||||
filename: '[name].[hash:8].js',
|
filename: '[name].[hash:8].js',
|
||||||
umdNamedDefine: true,
|
umdNamedDefine: true,
|
||||||
chunkFilename: 'async_[name].[chunkhash:8].js'
|
chunkFilename: 'async_[name].[chunkhash:8].js'
|
||||||
|
@ -18,7 +18,7 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
simulators: [`/zanui/vue/examples${location.hash}`],
|
simulators: [`/zanui/vant/examples${location.hash}`],
|
||||||
demoURL: '',
|
demoURL: '',
|
||||||
lang: getLang()
|
lang: getLang()
|
||||||
};
|
};
|
||||||
|
@ -18,7 +18,7 @@ Vue.use(VueRouter);
|
|||||||
const routesConfig = routes(true);
|
const routesConfig = routes(true);
|
||||||
const router = new VueRouter({
|
const router = new VueRouter({
|
||||||
mode: 'hash',
|
mode: 'hash',
|
||||||
base: '/zanui/vue/examples',
|
base: '/zanui/vant/examples',
|
||||||
routes: routesConfig
|
routes: routesConfig
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -12,13 +12,13 @@ const routesConfig = routes();
|
|||||||
|
|
||||||
const router = new VueRouter({
|
const router = new VueRouter({
|
||||||
mode: 'hash',
|
mode: 'hash',
|
||||||
base: '/zanui/vue/',
|
base: '/zanui/vant/',
|
||||||
routes: routesConfig
|
routes: routesConfig
|
||||||
});
|
});
|
||||||
|
|
||||||
router.beforeEach((route, redirect, next) => {
|
router.beforeEach((route, redirect, next) => {
|
||||||
if (isMobile) {
|
if (isMobile) {
|
||||||
window.location.replace('/zanui/vue/examples');
|
window.location.replace('/zanui/vant/examples');
|
||||||
}
|
}
|
||||||
document.title = route.meta.title || document.title;
|
document.title = route.meta.title || document.title;
|
||||||
next();
|
next();
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"build:style-entry": "VUE_ENV=server node build/bin/build-style-entry.js",
|
"build:style-entry": "VUE_ENV=server node build/bin/build-style-entry.js",
|
||||||
"build:changelog": "sh build/bin/build-changelog.sh",
|
"build:changelog": "sh build/bin/build-changelog.sh",
|
||||||
"deploy": "npm run deploy:docs && npm run deploy:cdn && gh-pages -d docs/dist --remote youzan && rimraf docs/dist",
|
"deploy": "npm run deploy:docs && npm run deploy:cdn && gh-pages -d docs/dist --remote youzan && rimraf docs/dist",
|
||||||
"deploy:cdn": "superman cdn /zanui/vue docs/dist/*.js docs/dist/*.css && superman cdn /zanui/vue/async_en-US docs/dist/async_en-US/*.js && superman cdn /zanui/vue/async_zh-CN docs/dist/async_zh-CN/*.js",
|
"deploy:cdn": "superman cdn /zanui/vant docs/dist/*.js docs/dist/*.css && superman cdn /zanui/vant/async_en-US docs/dist/async_en-US/*.js && superman cdn /zanui/vant/async_zh-CN docs/dist/async_zh-CN/*.js",
|
||||||
"deploy:docs": "rimraf docs/dist && cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.config.prod.js",
|
"deploy:docs": "rimraf docs/dist && cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.config.prod.js",
|
||||||
"dist": "node build/bin/build-lib.js",
|
"dist": "node build/bin/build-lib.js",
|
||||||
"clean": "rimraf lib && rimraf packages/*/lib",
|
"clean": "rimraf lib && rimraf packages/*/lib",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user