chore: prettier markdown files

This commit is contained in:
chenjiahan 2020-04-02 15:39:06 +08:00
parent 2fb5cca49a
commit d48cd73adb
10 changed files with 105 additions and 121 deletions

View File

@ -8,14 +8,14 @@
### Features
* 60+ Reusable components
* 90% Unit test coverage
* Extensive documentation and demos
* Support [babel-plugin-import](https://github.com/ant-design/babel-plugin-import)
* Support Custom Theme
* Support i18n
* Support TS
* Support SSR
- 60+ Reusable components
- 90% Unit test coverage
- Extensive documentation and demos
- Support [babel-plugin-import](https://github.com/ant-design/babel-plugin-import)
- Support Custom Theme
- Support i18n
- Support TS
- Support SSR
### Quickstart
@ -31,18 +31,18 @@ Modern browsers and Android 4.0+, iOS 8.0+.
### Ecosystem
| Project | Description |
|-----|------|
| [vant-demo](https://github.com/youzan/vant-demo) | Official vant demo collection |
| [vant-weapp](https://github.com/youzan/vant-weapp) | WeChat MiniProgram UI |
| [vant-cli](https://github.com/youzan/vant/tree/dev/packages/vant-cli) | Scaffold for UI library |
| [vant-icons](https://github.com/youzan/vant/tree/dev/packages/vant-icons) | Vant icons |
| Project | Description |
| ------------------------------------------------------------------------------------------- | ------------------------------ |
| [vant-demo](https://github.com/youzan/vant-demo) | Official vant demo collection |
| [vant-weapp](https://github.com/youzan/vant-weapp) | WeChat MiniProgram UI |
| [vant-cli](https://github.com/youzan/vant/tree/dev/packages/vant-cli) | Scaffold for UI library |
| [vant-icons](https://github.com/youzan/vant/tree/dev/packages/vant-icons) | Vant icons |
| [vant-touch-emulator](https://github.com/youzan/vant/tree/dev/packages/vant-touch-emulator) | Using vant in desktop browsers |
### Links
* [Feedback](https://github.com/youzan/vant/issues)
* [Changelog](#/en-US/changelog)
- [Feedback](https://github.com/youzan/vant/issues)
- [Changelog](#/en-US/changelog)
### LICENSE

View File

@ -8,14 +8,14 @@
### 特性
* 60+ 高质量组件
* 90% 单元测试覆盖率
* 完善的中英文文档和示例
* 支持按需引入
* 支持主题定制
* 支持国际化
* 支持 TS
* 支持 SSR
- 60+ 高质量组件
- 90% 单元测试覆盖率
- 完善的中英文文档和示例
- 支持按需引入
- 支持主题定制
- 支持国际化
- 支持 TS
- 支持 SSR
### 快速上手
@ -47,19 +47,19 @@
### 生态
| 项目 | 描述 |
|-----|------|
| [vant-demo](https://github.com/youzan/vant-demo) | Vant 官方示例合集 |
| [vant-weapp](https://github.com/youzan/vant-weapp) | 微信小程序组件库 |
| [vant-cli](https://github.com/youzan/vant/tree/dev/packages/vant-cli) | 开箱即用的组件库搭建工具 |
| [vant-icons](https://github.com/youzan/vant/tree/dev/packages/vant-icons) | Vant 图标库 |
| 项目 | 描述 |
| ------------------------------------------------------------------------------------------- | -------------------------- |
| [vant-demo](https://github.com/youzan/vant-demo) | Vant 官方示例合集 |
| [vant-weapp](https://github.com/youzan/vant-weapp) | 微信小程序组件库 |
| [vant-cli](https://github.com/youzan/vant/tree/dev/packages/vant-cli) | 开箱即用的组件库搭建工具 |
| [vant-icons](https://github.com/youzan/vant/tree/dev/packages/vant-icons) | Vant 图标库 |
| [vant-touch-emulator](https://github.com/youzan/vant/tree/dev/packages/vant-touch-emulator) | 在桌面端使用 Vant 的辅助库 |
### 链接
* [意见反馈](https://github.com/youzan/vant/issues)
* [更新日志](#/zh-CN/changelog)
* [码云镜像](https://gitee.com/organizations/vant-contrib)
- [意见反馈](https://github.com/youzan/vant/issues)
- [更新日志](#/zh-CN/changelog)
- [码云镜像](https://gitee.com/organizations/vant-contrib)
### 开源协议

View File

@ -78,7 +78,7 @@ import { Button } from 'vant';
import Button from 'vant/lib/button';
import 'vant/lib/button/style';
```
### 3. Import all components
```js
@ -97,7 +97,10 @@ The easiest way to use Vant is to include a CDN link in the html file, after whi
```html
<!-- import style -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vant@2.5/lib/index.css">
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/vant@2.5/lib/index.css"
/>
<!-- import script -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.min.js"></script>
@ -107,7 +110,7 @@ The easiest way to use Vant is to include a CDN link in the html file, after whi
// Render the Button component
new Vue({
el: '#app',
template: `<van-button>Button</van-button>`
template: `<van-button>Button</van-button>`,
});
// Call function component
@ -131,13 +134,13 @@ postcss config example:
```js
module.exports = {
plugins: {
'autoprefixer': {
browsers: ['Android >= 4.0', 'iOS >= 8']
autoprefixer: {
browsers: ['Android >= 4.0', 'iOS >= 8'],
},
'postcss-pxtorem': {
rootValue: 37.5,
propList: ['*']
}
}
}
```
propList: ['*'],
},
},
};
```

View File

@ -41,7 +41,6 @@ yarn add vant
- 配置基于 TypeScript 的工程
- 配置自定义主题色方案
## 引入组件
### 方式一. 自动按需引入组件 (推荐)
@ -115,21 +114,24 @@ Vue.use(Vant);
```html
<!-- 引入样式文件 -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vant@2.5/lib/index.css">
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/vant@2.5/lib/index.css"
/>
<!-- 引入 Vue 和 Vant 的 JS 文件 -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vant@2.5/lib/vant.min.js"></script>
<script>
// 在 #app 标签下渲染一个按钮组件
new Vue({
el: '#app',
template: `<van-button>按钮</van-button>`
});
// 在 #app 标签下渲染一个按钮组件
new Vue({
el: '#app',
template: `<van-button>按钮</van-button>`,
});
// 调用函数组件,弹出一个 Toast
vant.Toast('提示');
// 调用函数组件,弹出一个 Toast
vant.Toast('提示');
</script>
```
@ -149,15 +151,15 @@ Vant 中的样式默认使用`px`作为单位,如果需要使用`rem`单位,
```js
module.exports = {
plugins: {
'autoprefixer': {
browsers: ['Android >= 4.0', 'iOS >= 8']
autoprefixer: {
browsers: ['Android >= 4.0', 'iOS >= 8'],
},
'postcss-pxtorem': {
rootValue: 37.5,
propList: ['*']
}
}
}
propList: ['*'],
},
},
};
```
> 在配置 postcss-loader 时,应避免 ignore node_modules 目录,否则将导致 Vant 样式无法被编译
@ -184,7 +186,10 @@ iPhone X 等机型底部存在底部指示条,指示条的操作区域与页
```html
<!-- 在 head 标签中添加 meta 标签,并设置 viewport-fit=cover 值 -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover">
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover"
/>
<!-- 开启 safe-area-inset-bottom 属性 -->
<van-number-keyboard safe-area-inset-bottom />
@ -207,14 +212,14 @@ Vant 中的许多组件提供了实例方法,调用实例方法时,我们需
export default {
data() {
return {
checked: false
checked: false,
};
},
// 注意:组件挂载后才能访问到 ref 对象
mounted() {
this.$refs.checkbox.toggle();
}
}
},
};
```
## 常见问题
@ -230,7 +235,7 @@ export default {
</van-cell-group>
```
这是因为 HTML 并不支持自闭合的自定义元素,也就是说 `<van-cell />` 这样的语法是不被识别的,使用完整的闭合标签可以避免这个问题:
这是因为 HTML 并不支持自闭合的自定义元素,也就是说 `<van-cell />` 这样的语法是不被识别的,使用完整的闭合标签可以避免这个问题:
```html
<van-cell-group>

View File

@ -12,18 +12,18 @@
// bad
export default {
data: {
foo: 'bar'
}
}
foo: 'bar',
},
};
// good
export default {
data () {
data() {
return {
foo: 'bar'
}
}
}
foo: 'bar',
};
},
};
```
### 单文件组件文件名称
@ -78,16 +78,16 @@ components/
// bad
export default {
props: {
'greeting-text': String
}
'greeting-text': String,
},
};
// good
export default {
props: {
greetingText: String
}
}
greetingText: String,
},
};
```
```html
@ -98,38 +98,16 @@ export default {
<welcome-message greeting-text="hi" />
```
### Props 换行
多个 Props 的元素应该分多行撰写,每个 Props 一行,闭合标签单起一行。
```html
<!-- bad -->
<my-component foo="a" bar="b" baz="c" />
<!-- good -->
<my-component
foo="a"
bar="b"
baz="c"
/>
```
### 指令缩写
指令缩写,用 `:` 表示 `v-bind:` ,用 `@` 表示 `v-on:`
```html
<!-- bad -->
<input
v-bind:value="value"
v-on:input="onInput"
>
<input v-bind:value="value" v-on:input="onInput" />
<!-- good -->
<input
:value="value"
@input="onInput"
>
<input :value="value" @input="onInput" />
```
### Props 顺序
@ -175,7 +153,7 @@ export default {
destroyed() {},
methods: {}
methods: {},
};
```
@ -192,7 +170,7 @@ export default {
styles() {
// ...
}
},
},
methods: {
@ -202,8 +180,8 @@ export default {
onChange() {
// ...
}
}
},
},
};
```
@ -213,14 +191,14 @@ export default {
```html
<template>
...
...
</template>
<script>
/* ... */
/* ... */
</script>
<style>
/* ... */
/* ... */
</style>
```

View File

@ -21,7 +21,6 @@ There are some basic variables below, all available variables could be found in
## How to custom theme
### Step 1: import less file
First you should import the less source file to your project. you can use babel-plugin-import to automatically import or just manually import less file.
@ -39,11 +38,11 @@ module.exports = {
libraryName: 'vant',
libraryDirectory: 'es',
// specify less file path
style: name => `${name}/style/less`
style: (name) => `${name}/style/less`,
},
'vant'
]
]
'vant',
],
],
};
```
@ -107,4 +106,3 @@ module.exports = {
},
};
```

View File

@ -42,11 +42,11 @@ module.exports = {
libraryName: 'vant',
libraryDirectory: 'es',
// 指定样式路径
style: name => `${name}/style/less`
style: (name) => `${name}/style/less`,
},
'vant'
]
]
'vant',
],
],
};
```

View File

@ -49,7 +49,7 @@ Vue.mixin({
const locales = {};
const camelizedName = camelize(name);
Object.keys(i18n).forEach(key => {
Object.keys(i18n).forEach((key) => {
locales[key] = { [camelizedName]: i18n[key] };
});
@ -60,7 +60,7 @@ Vue.mixin({
// switch lang after routing
if (window.vueRouter) {
window.vueRouter.afterEach(to => {
window.vueRouter.afterEach((to) => {
const { lang } = to.meta || {};
if (lang) {

View File

@ -43,7 +43,7 @@ export function mockGetBoundingClientRect(
Element.prototype.getBoundingClientRect = <any>jest.fn(() => rect);
return function() {
return function () {
Element.prototype.getBoundingClientRect = originMethod;
};
}

View File

@ -9,7 +9,7 @@ Vue.component('transition', TransitionStub as any);
// promisify setTimeout
export function later(delay: number = 0): Promise<void> {
return new Promise(resolve => {
return new Promise((resolve) => {
setTimeout(resolve, delay);
});
}